-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathvariables.tf
More file actions
39 lines (33 loc) · 999 Bytes
/
variables.tf
File metadata and controls
39 lines (33 loc) · 999 Bytes
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
variable "name" {
description = "Name prefix for all resources"
type = string
}
variable "principal_arn" {
description = "ARN of the IAM role/user running the manager (receives permissions to access these resources)"
type = string
}
variable "enable_artifact_registry" {
description = "Create ECR repository for deployment container images"
type = bool
default = true
}
variable "enable_commands_store" {
description = "Create DynamoDB table and S3 bucket for commands storage"
type = bool
default = false
}
variable "enable_impersonation" {
description = "Create IAM role for cross-account impersonation"
type = bool
default = false
}
variable "impersonation_trusted_accounts" {
description = "AWS account IDs allowed to assume the impersonation role"
type = list(string)
default = []
}
variable "tags" {
description = "Tags applied to all resources"
type = map(string)
default = {}
}