forked from cds-snc/cppd-infrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
39 lines (31 loc) · 951 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
variable "name" {
description = "(Required) Specify the Service Name."
}
variable "location" {
description = "(Required) Specify the location for these resources. Changing this forces a new resource to be created."
default = "canadacentral"
}
variable "docker_image" {
description = "(Required) Specify the name of the container to be deployed"
}
variable "docker_image_tag" {
description = "(Optional) Specify the tag to be deployed"
}
variable "environment" {
description = "(Required) Value for the environment tag"
}
variable "service_owner" {
description = "(Required) Value for the service owner tag"
}
variable "classification" {
description = "(Required) the value for the classification tag"
}
#variable "my_sql_master_password" {
# description = "MySql master password"
#}
#variable "docker_image" {
# description = "Docker image name"
#}
#variable "docker_image_tag" {
# description = "Docker image tag"
#}