-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
82 lines (66 loc) · 2.38 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
79
80
81
82
#----------------------------------VARIABLES: DATA SOURCE: RESOURCE GROUP-------------------------------#
variable "resource_group" {
type = string
description = "RG name in Azure"
}
variable "create_resource_group" {
type = bool
description = "create resource group"
}
variable "location" {
type = string
description = "RG location in Azure"
}
#----------------------------------VARIABLES: DNS ZONE--------------------------------------------------#
variable "DNSZone_name" {
type = string
description = "DNSZone name in Azure"
}
variable "email" {
type = string
description = "The email contact for the SOA record"
}
variable "host_name" {
type = string
description = "The domain name of the authoritative name server for the SOA record. Defaults to ns1-03.azure-dns.com."
}
variable "expire_time" {
type = number
description = "The expire time for the SOA record. Defaults to 2419200."
}
variable "minimum_ttl" {
type = number
description = "The minimum Time To Live for the SOA record. By convention, it is used to determine the negative caching duration. Defaults to 300."
}
variable "refresh_time" {
type = number
description = " The refresh time for the SOA record. Defaults to 3600."
}
variable "retry_time" {
type = number
description = "The retry time for the SOA record. Defaults to 300."
}
variable "serial_number" {
type = number
description = "The serial number for the SOA record. Defaults to 1."
}
variable "ttl" {
type = number
description = "The Time To Live of the SOA Record in seconds. Defaults to 3600."
}
variable "tags" {
type = map(string)
description = "The tags to associate with the resource."
}
#----------------------------------VARIABLE: PRIVATE DNS ZONE-------------------------------------------#
variable "private_dns_zone_name" {
type = string
description = "Private DNSZone name in Azure"
}
#----------------------------------VARIABLES: RBAC MODULE----------------------------------------------#
variable "role_definition_name" {
type = list(string)
description = "List of Role Definitions"
default = ["Reader", "Contributor"]
}
#------------------------------------------------------------------------------------------------------#