Sha256: 64ba836dec5dcd9831b213d435bc1b96657bfc4fdafdaccdd1c38fadedc29705

Contents?: true

Size: 822 Bytes

Versions: 2

Compression:

Stored size: 822 Bytes

Contents

variable "access_key" {
  type = "string"
}

variable "secret_key" {
  type = "string"
}

variable "public_key" {
  type = "string"
}

variable "private_key" {
  type = "string"
}

variable "keypair_name" {
  type = "string"
}

variable "region" {
  type = "string"
  default =  "eu-central-1"
}

variable "availability_zone" {
  type = "string"
  default =  "eu-central-1a"
}

variable "vpc_cidr_block" {
  type = "string"
}

variable "vpc_name" {
  type = "string"
}

variable "public_subnet_cidr" {
  type = "string"
}

variable "public_subnet_name" {
  type = "string"
}

variable "private_subnet_cidr" {
  type = "string"
}

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"
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
kite-0.0.8 tpl/aws/terraform/variables.tf
kite-0.0.7 tpl/aws/terraform/variables.tf