mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Commit a set of files that show the use of modules Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
29 lines
876 B
HCL
29 lines
876 B
HCL
variable "name" {
|
|
type = "string"
|
|
description = "Name prefix to use for networking resources"
|
|
}
|
|
|
|
variable "vpc_cidr_block" {
|
|
type = "string"
|
|
description = "CIDR block to use for new VPC"
|
|
}
|
|
|
|
variable "vpc_dns_hostnames" {
|
|
type = "string"
|
|
description = "True/False to enable DNS hostnames in new VPC"
|
|
}
|
|
|
|
variable "vpc_dns_support" {
|
|
type = "string"
|
|
description = "True/False to enable DNS support in new VPC"
|
|
}
|
|
|
|
variable "subnet_cidr_block" {
|
|
type = "string"
|
|
description = "CIDR block (in VPC CIDR block) to use for new subnet"
|
|
}
|
|
|
|
variable "subnet_map_pub_ip" {
|
|
type = "string"
|
|
description = "True/False to map public IP addresses on launch"
|
|
}
|