-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdemo.tf
55 lines (47 loc) · 1.92 KB
/
demo.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
# locals {
# customername = "asb"
# }
# resource "tfe_workspace" "terraform-enterprise-azure-vcs" {
# description = "Demo workspace for vcs driven workflow with subdirectory"
# allow_destroy_plan = true
# auto_apply = true
# execution_mode = "remote"
# file_triggers_enabled = true
# global_remote_state = false
# name = "${local.customername}-terraform-enterprise-azure-vcs"
# organization = var.organization
# queue_all_runs = false
# speculative_enabled = true
# structured_run_output_enabled = true
# tag_names = ["azure", "customerfacing", local.customername]
# terraform_version = var.v1latest
# trigger_prefixes = ["ent-azure"]
# working_directory = "ent-azure"
# vcs_repo {
# identifier = "ausmartway/terraform-enterprise-demo"
# ingress_submodules = false
# oauth_token_id = local.tfc_oauth_token
# }
# }
# resource "tfe_workspace" "terraform-enterprise-aws-vcs" {
# description = "Demo workspace for vcs driven workflow with subdirectory"
# allow_destroy_plan = true
# auto_apply = true
# execution_mode = "remote"
# file_triggers_enabled = false
# global_remote_state = false
# name = "${local.customername}-terraform-enterprise-aws-vcs"
# organization = var.organization
# queue_all_runs = false
# speculative_enabled = true
# structured_run_output_enabled = true
# tag_names = ["aws", "customerfacing", local.customername]
# terraform_version = var.v1latest
# trigger_prefixes = ["ent-aws"]
# working_directory = "ent-aws"
# vcs_repo {
# identifier = "ausmartway/terraform-enterprise-demo"
# ingress_submodules = false
# oauth_token_id = local.tfc_oauth_token
# }
# }