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

Update minimum TLS version enforcement #702

Merged
merged 10 commits into from
Apr 7, 2022
Prev Previous commit
Next Next commit
ensuring storageV2 for bicep/tf parity
lisamurphy-msft committed Apr 6, 2022
commit 6c0dfdf2fd4b4fe9bf9691d83e6a1d9da050c3b4
2 changes: 1 addition & 1 deletion src/bicep/modules/storage-account.bicep
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ param tags object = {}
resource storageAccount 'Microsoft.Storage/storageAccounts@2019-06-01' = {
name: storageAccountName
location: location
kind: 'Storage'
kind: 'StorageV2'
sku: {
name: skuName
}