cloud-foundation-fabric/fast/stages/02-networking-nva/outputs.tf

92 lines
2.8 KiB
Terraform
Raw Normal View History

2022-02-03 11:30:56 -08:00
/**
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
locals {
2022-02-15 23:07:58 -08:00
host_project_ids = {
2022-02-15 23:20:22 -08:00
dev-spoke-0 = module.dev-spoke-project.project_id
prod-landing = module.landing-project.project_id
prod-spoke-0 = module.prod-spoke-project.project_id
2022-02-15 23:07:58 -08:00
}
host_project_numbers = {
2022-02-15 23:20:22 -08:00
dev-spoke-0 = module.dev-spoke-project.number
prod-landing = module.landing-project.number
prod-spoke-0 = module.prod-spoke-project.number
2022-02-15 23:07:58 -08:00
}
2022-02-16 00:07:07 -08:00
tfvars = {
host_project_ids = local.host_project_ids
host_project_numbers = local.host_project_numbers
vpc_self_links = local.vpc_self_links
}
2022-02-15 23:07:58 -08:00
vpc_self_links = {
2022-02-15 23:20:22 -08:00
prod-landing-trusted = module.landing-trusted-vpc.self_link
prod-landing-untrusted = module.landing-untrusted-vpc.self_link
dev-spoke-0 = module.dev-spoke-vpc.self_link
prod-spoke-0 = module.prod-spoke-vpc.self_link
2022-02-03 11:30:56 -08:00
}
}
Initial MVP for CI/CD (#608) * preliminary support for wif in stage 0 * IAM wif role * IAM wif role TODO * add support for external SA IAM to SA module * add name output to SA module * separate cicd SA * tfdoc * GITLAB principal (untested) * make GCS name output static * outputs bucket * fix stage 1 test * tweak outputs * tfdoc * move wif_pool to automation variable * add support for top-level and repository providers * add missing boilerplate * fix branchless principal * initial workflow * symlink provider template in stages * remove service accounts from stage 0 cicd tfvars * add cicd interface variable to resman stage * fix cicd variable in resman stage * better condition on outputs_location * fix last change * change outputs_location type * revert outputs_location change * split outputs in stage 0 * update ci/cd temporary notes * rename additive IAM resource in SA module * split outputs in stage 1 * remove unused locals * fix stage 1 tests * tfdoc * Upload action files to outputs_bucket * Fix tests and README * rename template, streamline outputs * local templates and gcs output for all stage 2 * add workflows to local output files * Use lowercase WIF providers everywhere * Bring back suffix for workflow files * Remove unused files * Update READMEs * preliminary CI/CD implementation for stage 1 * fix stage 1 * stage 1 cicd * tfdoc * fix tests * readme and links for cicd and wif * refactor wif providers * refactor cicd for stage 1 * fix stage 1 * wif org policies * split identity provider configuration from cicd * add type attribute to cicd repositories * valid cicd repositories have a workflow template * refactor stage 01 * fix stage 01 tests * minimal CI/CD documentation * better check_links error reporting * fix links * Added Gitlab specific configurations Set the default issuer_uri for Gitlab. Added allowed audiences to OIDC configuration. * Fixed TF formatting in identity providers. * Changing identity provider audience to null Changing identity provider audience to default to null. * add instructions for renaming workflows * address Julio's comments Co-authored-by: Julio Castillo <jccb@google.com> Co-authored-by: alexmeissner <alexmeissner@google.com>
2022-04-11 23:17:27 -07:00
# generate tfvars file for subsequent stages
2022-02-15 23:07:58 -08:00
2022-02-03 11:30:56 -08:00
resource "local_file" "tfvars" {
2022-02-15 23:07:58 -08:00
for_each = var.outputs_location == null ? {} : { 1 = 1 }
file_permission = "0644"
filename = "${try(pathexpand(var.outputs_location), "")}/tfvars/02-networking.auto.tfvars.json"
2022-02-16 00:07:07 -08:00
content = jsonencode(local.tfvars)
2022-02-03 11:30:56 -08:00
}
Initial MVP for CI/CD (#608) * preliminary support for wif in stage 0 * IAM wif role * IAM wif role TODO * add support for external SA IAM to SA module * add name output to SA module * separate cicd SA * tfdoc * GITLAB principal (untested) * make GCS name output static * outputs bucket * fix stage 1 test * tweak outputs * tfdoc * move wif_pool to automation variable * add support for top-level and repository providers * add missing boilerplate * fix branchless principal * initial workflow * symlink provider template in stages * remove service accounts from stage 0 cicd tfvars * add cicd interface variable to resman stage * fix cicd variable in resman stage * better condition on outputs_location * fix last change * change outputs_location type * revert outputs_location change * split outputs in stage 0 * update ci/cd temporary notes * rename additive IAM resource in SA module * split outputs in stage 1 * remove unused locals * fix stage 1 tests * tfdoc * Upload action files to outputs_bucket * Fix tests and README * rename template, streamline outputs * local templates and gcs output for all stage 2 * add workflows to local output files * Use lowercase WIF providers everywhere * Bring back suffix for workflow files * Remove unused files * Update READMEs * preliminary CI/CD implementation for stage 1 * fix stage 1 * stage 1 cicd * tfdoc * fix tests * readme and links for cicd and wif * refactor wif providers * refactor cicd for stage 1 * fix stage 1 * wif org policies * split identity provider configuration from cicd * add type attribute to cicd repositories * valid cicd repositories have a workflow template * refactor stage 01 * fix stage 01 tests * minimal CI/CD documentation * better check_links error reporting * fix links * Added Gitlab specific configurations Set the default issuer_uri for Gitlab. Added allowed audiences to OIDC configuration. * Fixed TF formatting in identity providers. * Changing identity provider audience to null Changing identity provider audience to default to null. * add instructions for renaming workflows * address Julio's comments Co-authored-by: Julio Castillo <jccb@google.com> Co-authored-by: alexmeissner <alexmeissner@google.com>
2022-04-11 23:17:27 -07:00
resource "google_storage_bucket_object" "tfvars" {
bucket = var.automation.outputs_bucket
name = "tfvars/02-networking.auto.tfvars.json"
content = jsonencode(local.tfvars)
}
2022-02-15 23:07:58 -08:00
# outputs
2022-02-03 11:30:56 -08:00
2022-02-15 23:07:58 -08:00
output "host_project_ids" {
2022-02-03 11:30:56 -08:00
description = "Network project ids."
2022-02-15 23:07:58 -08:00
value = local.host_project_ids
2022-02-03 11:30:56 -08:00
}
2022-02-15 23:07:58 -08:00
output "host_project_numbers" {
2022-02-03 11:30:56 -08:00
description = "Network project numbers."
2022-02-15 23:07:58 -08:00
value = local.host_project_numbers
2022-02-03 11:30:56 -08:00
}
output "shared_vpc_self_links" {
description = "Shared VPC host projects."
2022-02-15 23:07:58 -08:00
value = local.vpc_self_links
2022-02-03 11:30:56 -08:00
}
2022-11-19 03:38:37 -08:00
output "tfvars" {
description = "Terraform variables file for the following stages."
sensitive = true
value = local.tfvars
}
2022-02-03 11:30:56 -08:00
output "vpn_gateway_endpoints" {
description = "External IP Addresses for the GCP VPN gateways."
2022-03-06 00:19:31 -08:00
value = local.enable_onprem_vpn == false ? null : {
2022-02-03 11:30:56 -08:00
onprem-ew1 = {
for v in module.landing-to-onprem-ew1-vpn[0].gateway.vpn_interfaces :
2022-02-03 11:30:56 -08:00
v.id => v.ip_address
}
onprem-ew4 = {
for v in module.landing-to-onprem-ew4-vpn[0].gateway.vpn_interfaces :
2022-02-03 11:30:56 -08:00
v.id => v.ip_address
}
}
}