1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- variable "vpc-name" {
- description = "The name of the VPC eg: maguetest"
- }
- variable "profile" {
- description = "The AWS profile to use"
- }
- variable "region" {
- description = "The AWS region to run in"
- }
- variable "vpc-cidr" {
- description = "The network CIDR to use for the VPC"
- }
- variable "enable-vpc-dns" {
- description = "Enable vpc dns"
- default = true
- }
- variable "map-public-ip-on-launch" {
- description = "Specify true to indicate that instances launched into the subnet should be assigned a public IP address."
- default = "false"
- }
- variable "vpc-azs" {
- type = "list"
- description = "The list of approved azs eg: ['us-west-1a', 'us-west-1c']"
- }
- variable "common-tags" {
- type = map
- description = "Tags that go everywhere"
- }
|