-
Notifications
You must be signed in to change notification settings - Fork 19
/
variables.tf
78 lines (65 loc) · 2.41 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
78
variable "region" {
type = string
description = "AWS Region"
default = "us-east-2"
}
variable "certificate_arn" {
type = string
description = "SSL certificate ARN for ALB HTTPS endpoints"
}
variable "cognito_user_pool_arn" {
type = string
description = "Cognito User Pool ARN"
}
variable "cognito_user_pool_client_id" {
type = string
description = "Cognito User Pool Client ID"
}
variable "cognito_user_pool_domain" {
type = string
description = "Cognito User Pool Domain. The User Pool Domain should be set to the domain prefix (`xxx`) instead of full domain (https://xxx.auth.us-west-2.amazoncognito.com)"
}
variable "atlantis_gh_team_whitelist" {
type = string
description = "Atlantis GitHub team whitelist"
default = "engineering:plan,devops:*"
}
variable "atlantis_gh_user" {
type = string
description = "Atlantis GitHub user"
default = "examplebot"
}
variable "atlantis_repo_whitelist" {
type = list(string)
description = "Whitelist of repositories Atlantis will accept webhooks from"
default = ["github.com/example/*"]
}
variable "atlantis_repo_name" {
type = string
description = "GitHub repository name of the atlantis to be built and deployed to ECS"
default = "atlantis"
}
variable "atlantis_repo_owner" {
type = string
description = "GitHub organization containing the Atlantis repository"
default = "cloudposse"
}
variable "atlantis_branch" {
type = string
description = "Atlantis branch of the GitHub repository, _e.g._ `master`"
default = "master"
}
variable "atlantis_container_cpu" {
type = number
description = "The vCPU setting to control cpu limits of container. (If FARGATE launch type is used below, this must be a supported vCPU size from the table here: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-cpu-memory-error.html)"
default = 256
}
variable "atlantis_container_memory" {
type = number
description = "The amount of RAM to allow container to use in MB. (If FARGATE launch type is used below, this must be a supported Memory size from the table here: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-cpu-memory-error.html)"
default = 512
}
variable "parent_zone_id" {
type = string
description = "The zone ID where the DNS record for the atlantis `short_name` will be written"
}