Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
wj-chen committed Oct 19, 2023
1 parent 0f6210b commit 3e8896f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
resource "google_bigquery_capacity_commitment" "<%= ctx[:primary_resource_id] %>" {
capacity_commitment_id = "capacity-tf-test%{random_suffix}"
capacity_commitment_id = "capacity-tf-test%{random_suffix}"

location = "us-west2"
slot_count = 100
plan = "FLEX_FLAT_RATE"
edition = "ENTERPRISE"
location = "us-west2"
slot_count = 100
plan = "FLEX_FLAT_RATE"
edition = "ENTERPRISE"
}

resource "time_sleep" "wait_61_seconds" {
depends_on = [google_bigquery_capacity_commitment.<%= ctx[:primary_resource_id] %>]

# Only needed for CI tests to be able to tear down the commitment once it's expired
create_duration = "61s"
create_duration = "61s"
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ resource "time_sleep" "wait_61_seconds" {
depends_on = [google_bigquery_capacity_commitment.<%= ctx[:primary_resource_id] %>]

# Only needed for CI tests to be able to tear down the commitment once it's expired
create_duration = "61s"
create_duration = "61s"
}

0 comments on commit 3e8896f

Please sign in to comment.