-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
122 lines (101 loc) · 2.7 KB
/
Copy pathvariables.tf
File metadata and controls
122 lines (101 loc) · 2.7 KB
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
# Copyright (c) 2026 GitOps Manager, S.L. All rights reserved.
# -----------------------------------------------------------------------------
# eksmanager-bootstrap — variables.tf
# Fill in terraform.tfvars.json with your values.
# Get the topology.json example from your EKS Manager Settings page.
# -----------------------------------------------------------------------------
# ── AWS ───────────────────────────────────────────────────────────────────────
variable "management_account_id" {
description = "AWS Management (root) account ID."
type = string
default = ""
}
variable "management_account_region" {
description = "AWS region for management account resources."
type = string
default = ""
}
variable "shared_services_account_id" {
description = "AWS Shared Services account ID."
type = string
default = ""
}
variable "shared_services_region" {
description = "AWS region for shared services resources."
type = string
default = ""
}
variable "manage_scp_automatically" {
description = "If true, creates and attaches the EKSManager SCP."
type = bool
default = true
}
variable "secrets_editing" {
description = "If true, grants agent role permission to update Secrets Manager."
type = bool
default = false
}
variable "org_config" {
description = "OU ID → account ID → allowed regions map."
type = map(map(list(string)))
default = {}
}
variable "agent_name" {
type = string
default = ""
}
variable "agent_subnet_id" {
type = string
default = ""
}
variable "agent_security_group_id" {
type = string
default = ""
}
variable "agent_ami" {
description = "Override AMI ID. Leave empty to use the latest Ubuntu 22.04 build automatically."
type = string
default = ""
}
# ── Server-supplied (injected by EKS Manager into terraform.tfvars.json) ───
variable "sso_instance_arn" {
type = string
default = ""
}
variable "organization_id" {
type = string
default = ""
}
variable "af7_bundle_download_url" {
type = string
default = ""
}
variable "agent_upgrade_download_url" {
type = string
default = ""
}
variable "agent_download_url" {
type = string
default = ""
}
variable "agent_upload_url" {
type = string
default = ""
}
variable "app_url" {
type = string
default = ""
}
variable "client_id" {
type = string
default = ""
}
variable "cognito_url" {
type = string
default = ""
}
variable "bearer_token" {
type = string
sensitive = true
default = ""
}