-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
44 lines (37 loc) · 954 Bytes
/
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
variable "name_prefix" {
type = string
}
variable "account_id" {
description = "The ID of the account this is being published to"
type = string
}
variable "slack_channel" {
description = "A slack channel you send notifications to"
type = string
}
variable "deployment_accounts" {
description = "A list of all accounts that we can deploy to"
type = object({
service = string
dev = optional(string)
test = optional(string)
stage = optional(string)
prod = string
})
}
variable "central_account" {
description = "The central account that can start a deployment."
type = string
}
variable "deployment_role" {
description = "The name of the deployment role in our accounts."
type = string
}
variable "subnets" {
description = "Subnet to deploy Fargate container in."
type = list
}
variable "vpc_id" {
description = "VPC that the subnets are in"
type = string
}