-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathvariables.tf
More file actions
39 lines (32 loc) · 733 Bytes
/
variables.tf
File metadata and controls
39 lines (32 loc) · 733 Bytes
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 "aws_cidr" {
description = "CIDR group for AWS network"
type = "string"
}
variable "gcp_cidr" {
description = "CIDR group for GCP network"
type = "string"
}
variable "gcp_network" {
description = "Network name for GCP"
type = "string"
}
variable "gcp_region" {
description = "Region for GCP"
type = "string"
}
variable "aws_region" {
description = "Region for AWS"
type = "string"
}
variable "aws_vpc" {
description = "VPC ID for AWS"
type = "string"
}
variable "aws_sg" {
description = "Security group for AWS Network"
type = "string"
}
variable "aws_route_table_id" {
description = "Routing table ID for AWS"
type = "string"
}