-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
77 lines (60 loc) · 1.9 KB
/
variables.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
variable "ct_management_account_id" {
description = "Control Tower Management Account ID"
}
variable "log_archive_account_id" {
description = "Control Tower Log Archive Account ID"
}
variable "audit_account_id" {
description = "Control Tower Audit Account ID"
}
variable "aft_management_account_id" {
description = "Control Tower AFT Management Account ID"
}
variable "github_installation_id" {
description = "GitHub installation ID"
default = ""
}
variable "github_owner" {
description = "Github Owner"
default = ""
}
variable "github_token" {
description = "GitHub Token for creating account repos"
default = ""
}
variable "organizations_read_only_access_key_id" {
description = "AWS_ACCESS_KEY_ID for Organization R/O Account"
default = ""
}
variable "organizations_read_only_secret_access_key" {
description = "AWS_SECRET_ACCESS_KEY for Organization R/O Account"
default = ""
}
variable "repo_aft_account_customizations" {
description = "Repository for AFT Account Customizations"
}
variable "repo_aft_account_provisioning_customizations" {
description = "Repository for AFT Account Provisioning Customizations"
}
variable "repo_aft_account_requests" {
description = "Repository for AFT Account Requests"
}
variable "repo_aft_framework" {
description = "Repository for AFT Framework"
}
variable "repo_aft_global_customizations" {
description = "Repository for AFT Global Customizations"
}
variable "terraform_aft_token" {
description = "Terraform AFT Team API Token"
}
variable "terraform_workloads_org_name" {
description = "Terraform Workloads Organization Name"
}
variable "terraform_workloads_token" {
description = "Terraform AFT (Workloads) Team API Token"
}
variable "TFC_WORKSPACE_SLUG" {
description = "DO NOT SET - Managed by TFC - Terraform Cloud workspace slug"
sensitive = true
}