From ea7827d1ad5ca583b92496d599229b64f62c4ee6 Mon Sep 17 00:00:00 2001 From: Michael Gfeller Date: Tue, 5 Jul 2022 11:44:33 +0200 Subject: [PATCH] FAST - added missing format argument in branch-pf-dev-sa-cicd In the module branch-pf-dev-sa-cicd, the calls to the "format" function were missing the argument var.automation.federated_identity_pool. --- fast/stages/01-resman/cicd-project-factory.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fast/stages/01-resman/cicd-project-factory.tf b/fast/stages/01-resman/cicd-project-factory.tf index 62f36f9d..2c9f0972 100644 --- a/fast/stages/01-resman/cicd-project-factory.tf +++ b/fast/stages/01-resman/cicd-project-factory.tf @@ -122,10 +122,12 @@ module "branch-pf-dev-sa-cicd" { each.value.branch == null ? format( local.identity_providers[each.value.identity_provider].principalset_tpl, + var.automation.federated_identity_pool, each.value.name ) : format( local.identity_providers[each.value.identity_provider].principal_tpl, + var.automation.federated_identity_pool, each.value.name, each.value.branch )