-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move MC KV creation to dedicated pipeline step
this allows us to run KV modification actions between infra creation and cert creation, e.g. registering certificate issuers Signed-off-by: Gerd Oberlechner <[email protected]>
- Loading branch information
Showing
9 changed files
with
221 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
dev-infrastructure/configurations/mgmt-infra.tmpl.bicepparam
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using '../templates/mgmt-infra.bicep' | ||
|
||
// CX KV | ||
param cxKeyVaultName = '{{ .cxKeyVault.name }}' | ||
param cxKeyVaultPrivate = {{ .cxKeyVault.private }} | ||
param cxKeyVaultSoftDelete = {{ .cxKeyVault.softDelete }} | ||
|
||
// MSI KV | ||
param msiKeyVaultName = '{{ .msiKeyVault.name }}' | ||
param msiKeyVaultPrivate = {{ .msiKeyVault.private }} | ||
param msiKeyVaultSoftDelete = {{ .msiKeyVault.softDelete }} | ||
|
||
// MGMT KV | ||
param mgmtKeyVaultName = '{{ .mgmtKeyVault.name }}' | ||
param mgmtKeyVaultPrivate = {{ .mgmtKeyVault.private }} | ||
param mgmtKeyVaultSoftDelete = {{ .mgmtKeyVault.softDelete }} | ||
|
||
// Cluster Service identity | ||
// used for Key Vault access | ||
param clusterServiceMIResourceId = '{{ .mgmt.clusterServiceResourceId }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.