Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Microsoft.Web/sites: endToEndEncryptionEnabled is not allowed - Warning #2132

Open
1 task done
Kris-Turk opened this issue Apr 24, 2024 · 0 comments
Open
1 task done

Comments

@Kris-Turk
Copy link

Resource Type

Microsoft.Web/sites

Api Version

2023-01-01

Issue Type

Missing property(s)

Other Notes

This property is available in the GUI and supported by ARM, if you use the property the setting works fine it just gives you a warning. My example Bicep deploys with out issue just need to update so it doesn't warn with "Property is not allowed"

Bicep Repro

resource appService_r 'Microsoft.Web/sites@2023-01-01' = {
name: appServiceName
location: location
kind: webAppKind
tags: tags
identity: {
type: 'SystemAssigned'
}
properties:{
endToEndEncryptionEnabled: true
serverFarmId: appServicePlan_r.id
reserved: true
isXenon: false
hyperV: false
scmSiteAlsoStopped: false
clientAffinityEnabled: false
clientCertEnabled: false
hostNamesDisabled: false
containerSize: 0
dailyMemoryTimeQuota: 0
httpsOnly: true
virtualNetworkSubnetId: subnetId
siteConfig: {
minTlsVersion: '1.2'
minTlsCipherSuite: 'TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256'
appSettings: [
{
name: 'FLASK_ENV'
value: 'production-${flaskClient}'
}
{
name: 'AZURE_POSTGRESQL_CONNECTIONSTRING'
value: AZURE_POSTGRESQL_CONNECTIONSTRING
}
]

}

}
}

Confirm

  • I have read the troubleshooting guide and looked for duplicates.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Todo
Development

No branches or pull requests

2 participants