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.
This commit is contained in:
Michael Gfeller 2022-07-05 11:44:33 +02:00
parent 8585852ae6
commit ea7827d1ad
1 changed files with 2 additions and 0 deletions

View File

@ -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
)