-
Notifications
You must be signed in to change notification settings - Fork 25
/
variables.tf
50 lines (39 loc) · 1.09 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
# General
variable "owner" {
description = "Person Deploying this Stack e.g. john-doe"
}
variable "namespace" {
description = "Name of the zone e.g. demo"
}
variable "created-by" {
description = "Tag used to identify resources created programmatically by Terraform"
default = "terraform"
}
variable "hosted-zone" {
description = "The name of the dns zone on Route 53 that will be used as the master zone "
}
# AWS
variable "create_aws_dns_zone" {
description = "Set to true if you want to deploy the AWS delegated zone."
type = bool
default = "false"
}
# Azure
variable "create_azure_dns_zone" {
description = "Set to true if you want to deploy the Azure delegated zone."
type = bool
default = "false"
}
variable "azure_location" {
description = "The azure location to deploy the DNS service"
default = "West Europe"
}
# GCP
variable "create_gcp_dns_zone" {
description = "Set to true if you want to deploy the Azure delegated zone."
type = bool
default = "false"
}
variable "gcp_project" {
description = "GCP project name"
}