Skip to content

Instantly share code, notes, and snippets.

@mschirbel
Created May 13, 2019 04:32
Show Gist options
  • Save mschirbel/7fd68cad21ac0e4250149565569b7811 to your computer and use it in GitHub Desktop.
Save mschirbel/7fd68cad21ac0e4250149565569b7811 to your computer and use it in GitHub Desktop.
variable "aws_access_key" {
default = "ACCESS"
}
variable "aws_secret_key" {
default = "SECRET"
}
variable "aws_key_path" {
default = "/root/terraform-ansible/terraform"
}
variable "aws_key_name" {
default = "ansible"
}
variable "aws_region" {
description = "EC2 Region for the VPC"
default = "sa-east-1"
}
variable "amis" {
description = "AMIs by region"
default = {
sa-east-1 = "ami-0669a96e355eac82f"
}
}
variable "vpc_cidr" {
description = "CIDR for the whole VPC"
default = "10.0.0.0/16"
}
variable "public_subnet_cidr" {
description = "CIDR for the Public Subnet"
default = "10.0.0.0/24"
}
variable "private_subnet_cidr" {
description = "CIDR for the Private Subnet"
default = "10.0.1.0/24"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment