-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathflexible-workspaces.tf
407 lines (355 loc) · 14 KB
/
flexible-workspaces.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
# this file contains workspaces that were imported before this tfc-config-as-code repo has been created.
resource "tfe_workspace" "aws-lambda-example" {
description = "Demo workspace for deploying lambda functions."
allow_destroy_plan = true
auto_apply = true
# execution_mode = "remote"
file_triggers_enabled = false
# global_remote_state = false
name = "aws-lambda-example"
organization = var.organization
queue_all_runs = false
speculative_enabled = true
structured_run_output_enabled = true
tag_names = ["aws", "customerfacing", "autoinject", "awsconsumer"]
terraform_version = var.v1latest
trigger_prefixes = []
vcs_repo {
identifier = "ausmartway/aws-lambda-demo"
ingress_submodules = false
oauth_token_id = local.tfc_oauth_token
}
}
resource "tfe_variable" "aws-lambda-example-aws_region" {
key = "AWS_REGION"
value = var.aws_default_region
category = "env"
workspace_id = tfe_workspace.aws-lambda-example.id
description = "AWS REGION"
}
resource "tfe_workspace" "multi-env-provisioning-example-0-test" {
description = "A demo showing how to manage multiple enviroments using one set of terraform code."
allow_destroy_plan = true
auto_apply = true
# execution_mode = "remote"
file_triggers_enabled = false
# global_remote_state = false
name = "multi-env-provisioning-example-0-test"
organization = var.organization
queue_all_runs = false
speculative_enabled = true
structured_run_output_enabled = true
tag_names = ["customerfacing", "aws", "autoinject", "awsconsumer"]
terraform_version = var.v1latest
trigger_prefixes = []
vcs_repo {
identifier = "ausmartway/multi-env-provisioning-example"
ingress_submodules = false
oauth_token_id = local.tfc_oauth_token
}
}
resource "tfe_variable" "multi-env-provisioning-example-0-test-aws_region" {
key = "AWS_REGION"
value = var.aws_default_region
category = "env"
workspace_id = tfe_workspace.multi-env-provisioning-example-0-test.id
description = "AWS REGION"
}
resource "tfe_workspace" "multi-env-provisioning-example-1-staging" {
description = "A demo showing how to manage multiple enviroments using one set of terraform code."
allow_destroy_plan = true
auto_apply = true
# execution_mode = "remote"
file_triggers_enabled = false
# global_remote_state = false
name = "multi-env-provisioning-example-1-staging"
organization = var.organization
queue_all_runs = false
speculative_enabled = true
structured_run_output_enabled = true
tag_names = ["customerfacing", "aws", "autoinject", "awsconsumer"]
terraform_version = var.v1latest
trigger_prefixes = []
vcs_repo {
identifier = "ausmartway/multi-env-provisioning-example"
ingress_submodules = false
oauth_token_id = local.tfc_oauth_token
}
}
resource "tfe_variable" "multi-env-provisioning-example-1-staging-aws_region" {
key = "AWS_REGION"
value = var.aws_default_region
category = "env"
workspace_id = tfe_workspace.multi-env-provisioning-example-1-staging.id
description = "AWS REGION"
}
resource "tfe_workspace" "multi-env-provisioning-example-2-prod" {
description = "A demo showing how to manage multiple enviroments using one set of terraform code."
allow_destroy_plan = true
auto_apply = true
# execution_mode = "remote"
file_triggers_enabled = false
# global_remote_state = false
name = "multi-env-provisioning-example-2-prod"
organization = var.organization
queue_all_runs = false
speculative_enabled = true
structured_run_output_enabled = true
tag_names = ["customerfacing", "aws", "autoinject", "awsconsumer"]
terraform_version = var.v1latest
trigger_prefixes = []
vcs_repo {
identifier = "ausmartway/multi-env-provisioning-example"
ingress_submodules = false
oauth_token_id = local.tfc_oauth_token
}
}
resource "tfe_variable" "multi-env-provisioning-example-2-prod-aws_region" {
key = "AWS_REGION"
value = var.aws_default_region
category = "env"
workspace_id = tfe_workspace.multi-env-provisioning-example-2-prod.id
description = "AWS REGION"
}
resource "tfe_workspace" "terraform-aws-vault-demo" {
description = "A workspace that standup a demo vault instance."
allow_destroy_plan = true
auto_apply = true
# execution_mode = "remote"
file_triggers_enabled = false
# global_remote_state = false
name = "terraform-aws-vault-demo"
organization = var.organization
queue_all_runs = false
speculative_enabled = true
structured_run_output_enabled = true
tag_names = ["internal", "aws", "vault", "autoinject", "awsconsumer"]
terraform_version = var.v1latest
trigger_prefixes = []
vcs_repo {
identifier = "ausmartway/terraform-aws-vault-demo"
ingress_submodules = false
oauth_token_id = local.tfc_oauth_token
}
}
resource "tfe_variable" "terraform-aws-vault-demo-aws_region" {
key = "AWS_REGION"
value = var.aws_default_region
category = "env"
workspace_id = tfe_workspace.terraform-aws-vault-demo.id
description = "AWS REGION"
}
# # //A local workspace managing vault on laptop
# resource "tfe_workspace" "Taipei-devopsdays" {
# description = "A simple demo to show HashiCorp tools can improve security of a k8s cluster."
# allow_destroy_plan = true
# auto_apply = true
# //local agent
# execution_mode = "agent"
# agent_pool_id = tfe_agent_pool.local-agent-pool.id
# file_triggers_enabled = false
# global_remote_state = false
# name = "Taipei-devopsdays"
# tag_names = ["customerfacing", "localagent", "vault"]
# organization = var.organization
# queue_all_runs = false
# speculative_enabled = true
# structured_run_output_enabled = true
# terraform_version = var.v1latest
# trigger_prefixes = []
# working_directory = "terraform-standing-up-gke"
# vcs_repo {
# identifier = "ausmartway/taipei-devopsdays-2021"
# ingress_submodules = false
# oauth_token_id = local.tfc_oauth_token
# }
# }
resource "tfe_workspace" "aws-s3-demo" {
description = "A simple demo to show how sentinel policy as code engine can make sure s3 are provisioned securely."
allow_destroy_plan = true
auto_apply = true
# execution_mode = "remote"
file_triggers_enabled = false
# global_remote_state = false
name = "aws-s3-demo"
tag_names = ["customerfacing", "aws", "autoinject", "awsconsumer"]
organization = var.organization
queue_all_runs = false
speculative_enabled = true
structured_run_output_enabled = true
terraform_version = "1.3.7"
trigger_prefixes = []
vcs_repo {
identifier = "ausmartway/aws-s3-demo"
ingress_submodules = false
oauth_token_id = local.tfc_oauth_token
}
}
resource "tfe_variable" "aws-s3-demo-aws_region" {
key = "AWS_REGION"
value = var.aws_default_region
category = "env"
workspace_id = tfe_workspace.aws-s3-demo.id
description = "AWS REGION"
}
resource "tfe_workspace" "gcp-playground" {
description = "A simple demo of deploying gcp resources."
allow_destroy_plan = true
auto_apply = true
# execution_mode = "remote"
file_triggers_enabled = false
# global_remote_state = false
name = "gcp-playground"
organization = var.organization
queue_all_runs = false
speculative_enabled = true
structured_run_output_enabled = true
tag_names = ["customerfacing", "gcp", "autoinject", "internal", "testing"]
terraform_version = var.v1latest
trigger_prefixes = []
working_directory = "terraform-standup-gke"
vcs_repo {
identifier = "ausmartway/gcp-playground"
ingress_submodules = false
oauth_token_id = local.tfc_oauth_token
}
}
//get a list of TFC/E workspaces that has tag 'aws'
data "tfe_workspace_ids" "awsconsumer-apps" {
tag_names = ["awsconsumer"]
organization = var.organization
}
data "tfe_workspace_ids" "azureconsumer-apps" {
tag_names = ["azureconsumer"]
organization = var.organization
}
resource "tfe_workspace" "aws-shared-infra" {
description = "My core aws infrustructure that are shared by other workspaces."
allow_destroy_plan = true
auto_apply = true
# execution_mode = "remote"
file_triggers_enabled = false
# global_remote_state = false
# remote_state_consumer_ids = values(data.tfe_workspace_ids.awsconsumer-apps.ids)
name = "aws-shared-infra"
organization = var.organization
queue_all_runs = false
speculative_enabled = true
structured_run_output_enabled = true
tag_names = ["aws", "internal", "autoinject"]
terraform_version = var.v1latest
trigger_prefixes = []
vcs_repo {
identifier = "ausmartway/aws-shared-infra"
ingress_submodules = false
oauth_token_id = local.tfc_oauth_token
}
}
resource "tfe_workspace_settings" "aws-shared-infra" {
workspace_id = tfe_workspace.aws-shared-infra.id
global_remote_state = false
remote_state_consumer_ids = values(data.tfe_workspace_ids.awsconsumer-apps.ids)
}
resource "tfe_variable" "aws-shared-infra-aws_region" {
key = "AWS_REGION"
value = var.aws_default_region
category = "env"
workspace_id = tfe_workspace.aws-shared-infra.id
description = "AWS REGION"
}
resource "tfe_workspace" "azure-shared-infra" {
description = "Core azure infra"
allow_destroy_plan = true
auto_apply = true
# execution_mode = "remote"
file_triggers_enabled = false
# global_remote_state = true
name = "azure-shared-infra"
organization = var.organization
queue_all_runs = false
speculative_enabled = true
structured_run_output_enabled = true
tag_names = ["customerfacing", "azure", "autoinject"]
terraform_version = var.v1latest
trigger_prefixes = []
vcs_repo {
identifier = "ausmartway/azure-shared-infra"
ingress_submodules = false
oauth_token_id = local.tfc_oauth_token
}
}
resource "tfe_workspace_settings" "azure-shared-infra" {
workspace_id = tfe_workspace.azure-shared-infra.id
global_remote_state = false
remote_state_consumer_ids = values(data.tfe_workspace_ids.azureconsumer-apps.ids)
}
resource "tfe_workspace" "vault-config-as-code-aws" {
description = "A workspace that's used to manage my own Vault's configuration as code."
allow_destroy_plan = true
auto_apply = true
# execution_mode = "remote"
file_triggers_enabled = false
# global_remote_state = false
name = "vault-config-as-code-aws"
organization = var.organization
queue_all_runs = false
# remote_state_consumer_ids = []
speculative_enabled = true
structured_run_output_enabled = true
tag_names = ["customerfacing", "vault", "aws"]
terraform_version = var.v1latest
trigger_prefixes = []
vcs_repo {
identifier = "ausmartway/vault-config-as-code"
branch = "aws"
ingress_submodules = false
oauth_token_id = local.tfc_oauth_token
}
}
resource "tfe_workspace" "vault-config-as-code-local" {
description = "A workspace that's used to manage my own Vault's configuration as code."
allow_destroy_plan = true
auto_apply = true
# execution_mode = "agent"
# agent_pool_id = tfe_agent_pool.local-agent-pool.id
file_triggers_enabled = false
# global_remote_state = false
name = "vault-config-as-code-local"
organization = var.organization
queue_all_runs = false
# remote_state_consumer_ids = []
speculative_enabled = true
structured_run_output_enabled = true
tag_names = ["customerfacing", "vault", "local"]
terraform_version = var.v1latest
trigger_prefixes = []
vcs_repo {
identifier = "ausmartway/vault-config-as-code"
branch = "local"
ingress_submodules = false
oauth_token_id = local.tfc_oauth_token
}
}
resource "tfe_workspace" "vault-config-as-code-hcp" {
description = "A workspace that's used to manage my own Vault's configuration as code."
allow_destroy_plan = true
auto_apply = true
# execution_mode = "remote"
file_triggers_enabled = false
# global_remote_state = false
name = "vault-config-as-code-hcp"
organization = var.organization
queue_all_runs = false
# remote_state_consumer_ids = []
speculative_enabled = true
structured_run_output_enabled = true
tag_names = ["customerfacing", "vault", "hcp"]
terraform_version = var.v1latest
trigger_prefixes = []
vcs_repo {
identifier = "ausmartway/vault-config-as-code"
branch = "hcp"
ingress_submodules = false
oauth_token_id = local.tfc_oauth_token
}
}