forked from jjno91/terraform-aws-vpc-peering-accepter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
34 lines (28 loc) · 894 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
variable "env" {
description = "Unique name of your Terraform environment to be used for naming resources"
default = "default"
}
variable "tags" {
description = "Additional tags to be applied to all resources"
default = {}
}
variable "vpc_id" {
description = "ID of the VPC where the security group and routes will be created"
default = ""
}
variable "vpc_route_tables" {
description = "All route tables that you want to receive the peering route"
default = []
}
variable "peer_env" {
description = "Environment of the VPC you are peering with"
default = ""
}
variable "vpc_peering_connection_id" {
description = "https://www.terraform.io/docs/providers/aws/r/vpc_peering_accepter.html#vpc_peering_connection_id"
default = ""
}
variable "peer_vpc_cidr_block" {
description = "CIDR block associated with the peer VPC"
default = ""
}