From 3e5977cc4f6dd29439fb35a00a0b2c011e30c34d Mon Sep 17 00:00:00 2001 From: jordlay <72226943+jordlay@users.noreply.github.com> Date: Fri, 22 Mar 2024 15:33:22 +0000 Subject: [PATCH] changed configuration type from secret to open; updated changelog (#162) Co-authored-by: Jordan --- src/aosm/HISTORY.rst | 1 + src/aosm/azext_aosm/common/templates/nsd/nf_template.bicep.j2 | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/aosm/HISTORY.rst b/src/aosm/HISTORY.rst index ff892c457c2..394595aee28 100644 --- a/src/aosm/HISTORY.rst +++ b/src/aosm/HISTORY.rst @@ -5,6 +5,7 @@ Release History Unreleased ++++++++ +* Changed configurationType for NF Resources from Secret to Open 1.0.0b10 ++++++++ diff --git a/src/aosm/azext_aosm/common/templates/nsd/nf_template.bicep.j2 b/src/aosm/azext_aosm/common/templates/nsd/nf_template.bicep.j2 index b6bbfbcfe27..4b1f2187876 100644 --- a/src/aosm/azext_aosm/common/templates/nsd/nf_template.bicep.j2 +++ b/src/aosm/azext_aosm/common/templates/nsd/nf_template.bicep.j2 @@ -36,7 +36,7 @@ resource nfResource 'Microsoft.HybridNetwork/networkFunctions@2023-09-01' = [for nfviType: '{{nfvi_type}}' nfviId: (configObject.customLocationId == '') ? resourceGroupId : configObject.customLocationId allowSoftwareUpdate: true - configurationType: 'Secret' - secretDeploymentValues: string(values) + configurationType: 'Open' + deploymentValues: string(values) } }]