Skip to content

Commit

Permalink
terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mogul committed Dec 9, 2024
1 parent 2f882e7 commit a813ebe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions spiffworkflow/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ locals {
connector_url = "https://${local.connector_route}:61443"
frontend_url = "https://${local.frontend_route}"

backend_app_id = cloudfoundry_app.backend.id
connector_app_id = cloudfoundry_app.connector.id
frontend_app_id = cloudfoundry_app.frontend.id
tags = setunion(["terraform-cloudgov-managed"], var.tags)
backend_app_id = cloudfoundry_app.backend.id
connector_app_id = cloudfoundry_app.connector.id
frontend_app_id = cloudfoundry_app.frontend.id
tags = setunion(["terraform-cloudgov-managed"], var.tags)
backend_baseimage = split(":", var.backend_imageref)[0]
frontend_baseimage = split(":", var.frontend_imageref)[0]
connector_baseimage = split(":", var.connector_imageref)[0]
Expand Down
8 changes: 4 additions & 4 deletions spiffworkflow/tests/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ terraform {
}

module "spiff" {
source = "./.."
cf_org_name = "gsa-tts-oros-fac"
cf_space_name = "sandbox-workflow"
source = "./.."
cf_org_name = "gsa-tts-oros-fac"
cf_space_name = "sandbox-workflow"
frontend_imageref = "ghcr.io/sartography/spiffworkflow-frontend:main-latest"
backend_imageref = "ghcr.io/sartography/spiffworkflow-backend:main-latest"
backend_imageref = "ghcr.io/sartography/spiffworkflow-backend:main-latest"
}

0 comments on commit a813ebe

Please sign in to comment.