Skip to content

Commit

Permalink
terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jarpat committed Nov 28, 2023
1 parent edf22d6 commit f987639
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ variable "default_nodepool_locations" {

variable "node_pools" {
description = "Node pool definitions"
type = map(object({
type = map(object({
vm_type = string
os_disk_size = number
min_nodes = string
Expand All @@ -260,7 +260,7 @@ variable "node_pools" {
"min_nodes" = 1
"max_nodes" = 5
"node_taints" = ["workload.sas.com/class=cas:NoSchedule"]
"node_labels" = {
"node_labels" = {
"workload.sas.com/class" = "cas"
}
"local_ssd_count" = 0
Expand All @@ -273,7 +273,7 @@ variable "node_pools" {
"min_nodes" = 1
"max_nodes" = 5
"node_taints" = ["workload.sas.com/class=compute:NoSchedule"]
"node_labels" = {
"node_labels" = {
"workload.sas.com/class" = "compute"
"launcher.sas.com/prepullImage" = "sas-programming-environment"
}
Expand All @@ -287,7 +287,7 @@ variable "node_pools" {
"min_nodes" = 1
"max_nodes" = 5
"node_taints" = ["workload.sas.com/class=stateless:NoSchedule"]
"node_labels" = {
"node_labels" = {
"workload.sas.com/class" = "stateless"
}
"local_ssd_count" = 0
Expand All @@ -300,7 +300,7 @@ variable "node_pools" {
"min_nodes" = 1
"max_nodes" = 3
"node_taints" = ["workload.sas.com/class=stateful:NoSchedule"]
"node_labels" = {
"node_labels" = {
"workload.sas.com/class" = "stateful"
}
"local_ssd_count" = 0
Expand Down Expand Up @@ -350,7 +350,7 @@ variable "cluster_autoscaling_max_memory_gb" {
variable "postgres_server_defaults" {
description = "default values for a postgres server"
type = any
default = {
default = {
machine_type = "db-custom-8-30720"
storage_gb = 10
backups_enabled = true
Expand Down

0 comments on commit f987639

Please sign in to comment.