Skip to content

Commit 766ffa0

Browse files
committed
fmt
1 parent 807e342 commit 766ffa0

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

scaletest/terraform/action/coder_pprof.tf

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
locals {
2-
pprof_interval = "30s"
3-
pprof_duration = "300s"
2+
pprof_interval = "30s"
3+
pprof_duration = "300s"
44
}
55

66
resource "local_file" "kubeconfig" {
77
for_each = local.deployments
88

9-
content = templatefile("${path.module}/kubeconfig.tftpl", {
10-
name = google_container_cluster.cluster[each.key].name
11-
endpoint = "https://${google_container_cluster.cluster[each.key].endpoint}"
9+
content = templatefile("${path.module}/kubeconfig.tftpl", {
10+
name = google_container_cluster.cluster[each.key].name
11+
endpoint = "https://${google_container_cluster.cluster[each.key].endpoint}"
1212
cluster_ca_certificate = google_container_cluster.cluster[each.key].master_auth[0].cluster_ca_certificate
1313
access_token = data.google_client_config.default.access_token
1414
})
@@ -18,7 +18,7 @@ resource "local_file" "kubeconfig" {
1818
resource "null_resource" "pprof" {
1919
provisioner "local-exec" {
2020
interpreter = ["/bin/bash", "-c"]
21-
command = <<EOF
21+
command = <<EOF
2222
set -e
2323
2424
pids=()
@@ -63,5 +63,5 @@ kill -INT $pprof_pid
6363
EOF
6464
}
6565

66-
depends_on = [time_sleep.wait_baseline, local_file.kubeconfig ]
66+
depends_on = [time_sleep.wait_baseline, local_file.kubeconfig]
6767
}

scaletest/terraform/action/coder_templates.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ resource "kubernetes_job" "push_template_primary" {
160160
}
161161
wait_for_completion = true
162162

163-
depends_on = [ helm_release.provisionerd_primary ]
163+
depends_on = [helm_release.provisionerd_primary]
164164
}
165165

166166
resource "kubernetes_config_map" "template_europe" {
@@ -238,7 +238,7 @@ resource "kubernetes_job" "push_template_europe" {
238238
}
239239
wait_for_completion = true
240240

241-
depends_on = [ helm_release.provisionerd_europe ]
241+
depends_on = [helm_release.provisionerd_europe]
242242
}
243243

244244
resource "kubernetes_config_map" "template_asia" {
@@ -316,5 +316,5 @@ resource "kubernetes_job" "push_template_asia" {
316316
}
317317
wait_for_completion = true
318318

319-
depends_on = [ helm_release.provisionerd_asia ]
319+
depends_on = [helm_release.provisionerd_asia]
320320
}

scaletest/terraform/action/coder_traffic.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
locals {
2-
wait_baseline_duration = "60s"
2+
wait_baseline_duration = "60s"
33
workspace_traffic_job_timeout = "420s"
44
workspace_traffic_duration = "300s"
55
bytes_per_tick = 1024

scaletest/terraform/action/k8s_coder_asia.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ resource "helm_release" "coder_asia" {
7373
deployment = "asia",
7474
})]
7575

76-
depends_on = [ null_resource.license ]
76+
depends_on = [null_resource.license]
7777
}
7878

7979
resource "helm_release" "provisionerd_asia" {
@@ -106,5 +106,5 @@ resource "helm_release" "provisionerd_asia" {
106106
deployment = "asia",
107107
})]
108108

109-
depends_on = [ null_resource.license ]
109+
depends_on = [null_resource.license]
110110
}

scaletest/terraform/action/k8s_coder_europe.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ resource "helm_release" "coder_europe" {
7373
deployment = "europe",
7474
})]
7575

76-
depends_on = [ null_resource.license ]
76+
depends_on = [null_resource.license]
7777
}
7878

7979
resource "helm_release" "provisionerd_europe" {
@@ -106,5 +106,5 @@ resource "helm_release" "provisionerd_europe" {
106106
deployment = "europe",
107107
})]
108108

109-
depends_on = [ null_resource.license ]
109+
depends_on = [null_resource.license]
110110
}

scaletest/terraform/action/k8s_coder_primary.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,5 @@ resource "helm_release" "provisionerd_primary" {
124124
deployment = "primary",
125125
})]
126126

127-
depends_on = [ null_resource.license ]
127+
depends_on = [null_resource.license]
128128
}

0 commit comments

Comments
 (0)