-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
81 lines (81 loc) · 1.84 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
variable "vpc_name" {
type = string
description = "vpc_name"
default = ""
}
variable "organization_id" {
description = "Organisation ID"
default = ""
}
variable "project_name" {
description = "GCP Project Name"
default = ""
}
variable "project_id" {
description = "GCP Project Id"
default = ""
}
variable "primary_region" {
description = "primary_region"
default = ""
}
variable "subnet_cidr_01" {
type = string
description = "subnet_cidr_01"
default = ""
}
variable "subnet_cidr_02" {
type = string
description = "subnet_cidr_02"
default = ""
}
variable "billing_account_id" {
description = "Billing Account ID"
default = ""
}
variable "domain_names" {
type = list(string)
description = "domain names"
default = [""]
}
variable "service_attachment_name" {
type = string
description = "Service Attachment Name"
default = ""
}
variable "producer_forwarding_rule_name" {
type = string
description = "Producer Forwarding Rule Name"
default = ""
}
variable "producer_forwarding_rule_ip_address" {
type = string
description = "Producer Forwarding Rule IP Address"
default = ""
}
variable "producer_backend_service_name" {
type = string
description = "Producer Forwarding Rule Name"
default = ""
}
variable "producer_health_check_name" {
type = string
description = "Producer Health Check Name"
default = ""
}
variable "private_zone_name" {
description = "DNS private zone name"
default = ""
}
variable "private_zone_dns_name" {
description = "DNS private zone DNS name"
default = ""
}
variable "private_zone_a_record" {
description = "A Record that maps to producer forwarding rule IP address"
default = ""
}
variable "vpc_id" {
description = "VPC ID"
default = ""
}