Skip to content

Commit d4c9d2f

Browse files
committed
terraform fmt
1 parent ce8b6e8 commit d4c9d2f

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

run/jobs_create/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ resource "google_project_service" "cloudrun_api" {
2727
# Create basic Cloud Run Job using sample container image
2828
#[START cloudrun_jobs_create]
2929
resource "google_cloud_run_v2_job" "default" {
30-
name = "cloud-run-job"
31-
location = "us-central1"
30+
name = "cloud-run-job"
31+
location = "us-central1"
3232

3333
deletion_protection = false # set to "true" in production
3434

run/jobs_execute_jobs_on_schedule/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ resource "google_project_iam_binding" "token_creator_binding" {
6767

6868
# Cloud Run Job
6969
resource "google_cloud_run_v2_job" "default" {
70-
name = "cloud-run-job"
71-
location = "us-central1"
70+
name = "cloud-run-job"
71+
location = "us-central1"
7272

7373
deletion_protection = false # set to "true" in production
7474

run/jobs_max_retries_create/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ resource "google_project_service" "cloudrun_api" {
2626

2727
#[START cloudrun_jobs_max_retries_create]
2828
resource "google_cloud_run_v2_job" "default" {
29-
name = "cloud-run-job-retries"
30-
location = "us-central1"
29+
name = "cloud-run-job-retries"
30+
location = "us-central1"
3131

3232
deletion_protection = false # set to "true" in production
3333

run/jobs_task_parallelism_create/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ resource "google_project_service" "cloudrun_api" {
2626

2727
#[START cloudrun_jobs_task_parallelism_create]
2828
resource "google_cloud_run_v2_job" "default" {
29-
name = "cloud-run-job-parallelism"
30-
location = "us-central1"
29+
name = "cloud-run-job-parallelism"
30+
location = "us-central1"
3131

3232
deletion_protection = false # set to "true" in production
3333

run/jobs_task_timeout_create/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ resource "google_project_service" "cloudrun_api" {
2626

2727
#[START cloudrun_jobs_task_timeout_create]
2828
resource "google_cloud_run_v2_job" "default" {
29-
name = "cloud-run-job-timeout"
30-
location = "us-central1"
29+
name = "cloud-run-job-timeout"
30+
location = "us-central1"
3131

3232
deletion_protection = false # set to "true" in production
3333

0 commit comments

Comments
 (0)