Skip to content

Commit

Permalink
Create TFE workspace for Belgian gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarea committed Jan 15, 2024
1 parent ee95ea1 commit 85936a7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion tf-workspace/environments.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,22 @@ module "env_frankfurt" {
gcp_billing_account = var.gcp_billing_account

shared_infra_gcp_project_id = data.google_project.main.project_id
}

module "env_belgium" {
source = "../tf-modules/environment_workspace"

name = "belgium"

depends_on = [google_project_service.iam]
gcp_parent_folder = var.gcp_parent_folder
gcp_billing_account = var.gcp_billing_account

shared_infra_gcp_project_id = data.google_project.main.project_id
}

locals {
env_workspace_ids = [
module.env_frankfurt.tfe_workspace_id,
module.env_belgium.tfe_workspace_id,
]
}

0 comments on commit 85936a7

Please sign in to comment.