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) } }]