Skip to content

Commit

Permalink
add missing variables.tf to aws example (#27)
Browse files Browse the repository at this point in the history
Signed-off-by: Jari Kolehmainen <[email protected]>
  • Loading branch information
jakolehm authored Jun 25, 2020
1 parent a6112ea commit 9d1b760
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions examples/terraform/aws/variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
variable "cluster_name" {
default = "ucp"
}

variable "aws_region" {
default = "eu-north-1"
}

variable "vpc_cidr" {
default = "172.31.0.0/16"
}

variable "admin_password" {
default = "orcaorcaorca"
}


variable "master_count" {
default = 1
}

variable "worker_count" {
default = 3
}

variable "windows_worker_count" {
default = 0
}

variable "master_type" {
default = "m5.large"
}

variable "worker_type" {
default = "m5.large"
}

variable "master_volume_size" {
default = 100
}

variable "worker_volume_size" {
default = 100
}

0 comments on commit 9d1b760

Please sign in to comment.