tpl/aws/terraform/variables.tf in kite-0.0.6 vs tpl/aws/terraform/variables.tf in kite-0.0.7

- old
+ new

@@ -1,10 +1,10 @@ -variable "aws_access_key" { +variable "access_key" { type = "string" } -variable "aws_secret_key" { +variable "secret_key" { type = "string" } variable "public_key" { type = "string" @@ -16,45 +16,46 @@ variable "keypair_name" { type = "string" } -variable "aws_region" { +variable "region" { type = "string" default = "eu-central-1" } -variable "aws_availability_zone" { +variable "availability_zone" { type = "string" default = "eu-central-1a" } -variable "aws_vpc_cidr_block" { +variable "vpc_cidr_block" { type = "string" } -variable "aws_vpc_name" { +variable "vpc_name" { type = "string" } -variable "aws_platform_subnet_cidr_block" { +variable "public_subnet_cidr" { type = "string" } -variable "aws_platform_subnet_name" { +variable "public_subnet_name" { type = "string" } -variable "aws_ops_subnet_cidr_block" { +variable "private_subnet_cidr" { type = "string" } -variable "aws_ops_subnet_name" { +variable "private_subnet_name" { type = "string" } variable "aws_amis" { default = { us-east-1 = "ami-1d4e7a66" eu-central-1 = "ami-958128fa" + eu-west-1 = "ami-785db401" } }