Skip to content

Commit 108fbe1

Browse files
[CI] Format Terraform Files
I was just running terraform fmt which only works on the current directory. Running terraform fmt -recursive picks up another couple issues. Reviewers: lnihlen, cmtice, Keenuts, dschuff, gburgessiv Reviewed By: cmtice Pull Request: #496
1 parent 9025c6d commit 108fbe1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

premerge/gke_cluster/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ resource "google_container_node_pool" "llvm_premerge_windows" {
128128
"disable-legacy-endpoints" = "true"
129129
}
130130
disk_size_gb = 200
131-
disk_type = "pd-ssd"
131+
disk_type = "pd-ssd"
132132
# Terraform wants to recreate the node pool everytime whe running
133133
# terraform apply unless we explicitly set this.
134134
# TODO(boomanaiden154): Look into why terraform is doing this so we do

premerge/premerge_resources/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ resource "helm_release" "grafana-k8s-monitoring" {
249249
atomic = true
250250
timeout = 300
251251
# TODO(boomanaiden154); This needs to be upgraded to v2.x.x at some point.
252-
version = "1.6.14"
252+
version = "1.6.14"
253253

254254
values = [file("${path.module}/grafana_values.yaml")]
255255

premerge/premerge_resources/variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,17 @@ variable "runner_group_name" {
5656
}
5757

5858
variable "libcxx_runner_image" {
59-
type = string
59+
type = string
6060
default = "ghcr.io/llvm/libcxx-linux-builder:16f046281bf1a11d344eac1bc44d11f3e50e3b5d"
6161
}
6262

6363
variable "libcxx_release_runner_image" {
64-
type = string
64+
type = string
6565
default = "ghcr.io/llvm/libcxx-linux-builder:16f046281bf1a11d344eac1bc44d11f3e50e3b5d"
6666
}
6767

6868
# Same value as libcxx_runner_image at this time.
6969
variable "libcxx_next_runner_image" {
70-
type = string
70+
type = string
7171
default = "ghcr.io/llvm/libcxx-linux-builder:16f046281bf1a11d344eac1bc44d11f3e50e3b5d"
7272
}

0 commit comments

Comments
 (0)