forked from cloudposse/terraform-aws-ecs-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
67 lines (56 loc) · 1.49 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
variable "namespace" {
type = string
description = "Namespace (e.g. `cp` or `cloudposse`)"
default = "eg"
}
variable "stage" {
type = string
description = "Stage (e.g. `prod`, `dev`, `staging`)"
default = "testing"
}
variable "name" {
type = string
description = "Application or solution name (e.g. `app`)"
default = "ecs"
}
variable "delimiter" {
type = string
default = "-"
description = "Delimiter to be used between `namespace`, `stage`, `name` and `attributes`"
}
variable "attributes" {
type = list(string)
default = []
description = "Additional attributes (e.g. `1`)"
}
variable "tags" {
type = map(string)
default = {}
description = "Additional tags (e.g. map(`BusinessUnit`,`XYZ`)"
}
variable "region" {
type = string
description = "AWS Region"
default = "us-east-2"
}
variable "default_container_image" {
type = string
description = "The default container image to use in container definition"
default = "nginxdemos/hello:latest"
}
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"
}