tpl/aws/terraform/variables.tf in kite-0.0.4 vs tpl/aws/terraform/variables.tf in kite-0.0.5
- old
+ new
@@ -1,26 +1,60 @@
-variable "aws_access_key_id" {
-type = "string"
+variable "aws_access_key" {
+ type = "string"
}
-variable "aws_secret_access_key" {
-type = "string"
+
+variable "aws_secret_key" {
+ type = "string"
}
+
+variable "public_key" {
+ type = "string"
+}
+
+variable "private_key" {
+ type = "string"
+}
+
+variable "keypair_name" {
+ type = "string"
+}
+
variable "aws_region" {
- type = "string"
- default = "us-east-1"
+ type = "string"
+ default = "eu-central-1"
}
+
variable "aws_availability_zone" {
- type = "string"
- default = "us-east-1a"
+ type = "string"
+ default = "eu-central-1a"
}
-//variable "source_access_block1" {
-//type = "string"
-//}
-variable "ci_hostname" {
-type = "string"
+
+variable "aws_vpc_cidr_block" {
+ type = "string"
}
-variable "ci_dns_zone_id" {
-type = "string"
+
+variable "aws_vpc_name" {
+ type = "string"
}
-//variable "ssl_cert_arn" {
-//type = "string"
-//}
+
+variable "aws_platform_subnet_cidr_block" {
+ type = "string"
+}
+
+variable "aws_platform_subnet_name" {
+ type = "string"
+}
+
+variable "aws_ops_subnet_cidr_block" {
+ type = "string"
+}
+
+variable "aws_ops_subnet_name" {
+ type = "string"
+}
+
+variable "aws_amis" {
+ default = {
+ us-east-1 = "ami-1d4e7a66"
+ eu-central-1 = "ami-958128fa"
+ }
+}