-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
65 lines (55 loc) · 1.15 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
variable "aws_profile" {
default = "default"
description = "AWS profile"
type = string
}
variable "aws_region" {
default = "us-east-1"
description = "AWS region"
type = string
}
variable "cluster_name" {
default = "test-cluster"
description = "ECS Cluster name"
type = string
}
variable "task_def_name" {
default = "test-task"
description = "ECS Task Definition name"
type = string
}
variable "tag_env" {
default = "production"
description = "Tag: Environment"
type = string
}
variable "tag_cont" {
default = ""
description = "Tag: Contact"
type = string
}
variable "tag_cost" {
default = ""
description = "Tag: Cost"
type = string
}
variable "tag_cust" {
default = ""
description = "Tag: Customer"
type = string
}
variable "tag_proj" {
default = ""
description = "Tag: Project"
type = string
}
variable "tag_conf" {
default = "public"
description = "Tag: Confidentiality"
type = string
}
variable "tag_comp" {
default = "none"
description = "Tag: Compliance"
type = string
}