Skip to content

Commit

Permalink
Merge pull request #14 from pluralsh/fix/vars
Browse files Browse the repository at this point in the history
fix var types
  • Loading branch information
rauerhans authored Jan 2, 2024
2 parents 31ea23d + 15d508b commit 3dc9da3
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions terraform/clouds/aws/variables.tf
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
variable "cluster_name" {
type = string
default = "plural"
type = string
default = "plural"
}

variable "db_name" {
type = string
type = string
default = ""
}

variable "create_db" {
type = bool
type = bool
default = true
}

variable "kubernetes_version" {
type = string
default = "1.27"
type = string
default = "1.27"
}

variable "public" {
type = bool
default = true
type = bool
default = true
}

variable "vpc_name" {
type = string
default = "plural"
type = string
default = "plural"
}

variable "vpc_cidr" {
type = string
default = "10.0.0.0/16"
type = string
default = "10.0.0.0/16"
}

variable "private_subnets" {
type = string
default = ["10.0.1.0/20", "10.0.2.0/20", "10.0.3.0/20"]
type = list(string)
default = ["10.0.1.0/20", "10.0.2.0/20", "10.0.3.0/20"]
}

variable "public_subnets" {
type = string
default = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"]
type = list(string)
default = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"]
}

variable "deletion_protection" {
type = bool
type = bool
default = true
}

variable "db_instance_class" {
default = "db.t4g.large"
default = "db.t4g.large"
}

variable "node_group_defaults" {
Expand Down

0 comments on commit 3dc9da3

Please sign in to comment.