@@ -142,9 +142,9 @@ module avmRoleAssignment 'br/public:avm/ptn/authorization/resource-role-assignme
142142module avmKeyVault './modules/key-vault.bicep' = {
143143 name : format (deployment_param .resource_name_format_string , abbrs .security .keyVault )
144144 params : {
145- name : format (deployment_param .resource_name_format_string , abbrs .security .keyVault )
145+ // name: format(deployment_param.resource_name_format_string, abbrs.security.keyVault)
146146 keyVaultParams : {
147- keyvault_name : '${abbrs .security .keyVault }${deployment_param .solution_prefix }'
147+ keyvaultName : '${abbrs .security .keyVault }${deployment_param .solution_prefix }'
148148 location : deployment_param .resource_group_location
149149 tags : {
150150 app : deployment_param .solution_prefix
@@ -169,6 +169,7 @@ module avmKeyVault './modules/key-vault.bicep' = {
169169 enableVaultForTemplateDeployment : true
170170 softDeleteRetentionInDays : 7
171171 }
172+ deployment_param : deployment_param
172173 }
173174 scope : resourceGroup (resourceGroup ().name )
174175}
@@ -567,7 +568,7 @@ module avmContainerApp 'br/public:avm/res/app/container-app:0.16.0' = {
567568 env : [
568569 {
569570 name : 'APP_CONFIG_ENDPOINT'
570- value : '<APP_CONFIG_ENDPOINT>'
571+ value : avmAppConfig . outputs . endpoint
571572 }
572573 ]
573574 }
@@ -617,7 +618,7 @@ module avmContainerApp_API 'br/public:avm/res/app/container-app:0.16.0' = {
617618 env : [
618619 {
619620 name : 'APP_CONFIG_ENDPOINT'
620- value : '<APP_CONFIG_ENDPOINT>'
621+ value : avmAppConfig . outputs . endpoint
621622 }
622623 ]
623624 probes : [
0 commit comments