Skip to content

Commit

Permalink
int
Browse files Browse the repository at this point in the history
  • Loading branch information
nalbam committed Sep 24, 2020
1 parent 8133a1f commit af3aa34
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions 00-variable.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,35 +39,35 @@ variable "image" {
}

variable "desired" {
default = "1"
default = 1
}

variable "min" {
default = "1"
default = 1
}

variable "max" {
default = "10"
default = 2
}

variable "cpu" {
default = "256"
default = 256
}

variable "memory" {
default = "512"
default = 512
}

variable "port" {
default = "8080"
default = 8080
}

variable "cpu_low" {
default = "20"
default = 20
}

variable "cpu_high" {
default = "80"
default = 80
}

variable "domain" {
Expand Down

0 comments on commit af3aa34

Please sign in to comment.