Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions infra/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.4.1124.51302",
"templateHash": "12904071157118301552"
"templateHash": "5205541231650286521"
}
},
"parameters": {
Expand Down Expand Up @@ -2288,7 +2288,7 @@
"_generator": {
"name": "bicep",
"version": "0.4.1124.51302",
"templateHash": "17451550666935843444"
"templateHash": "8524388414033025523"
}
},
"parameters": {
Expand Down Expand Up @@ -2737,7 +2737,7 @@
"_generator": {
"name": "bicep",
"version": "0.4.1124.51302",
"templateHash": "12660131753967436973"
"templateHash": "9522336369044592370"
}
},
"parameters": {
Expand All @@ -2764,7 +2764,7 @@
"resources": [
{
"type": "Microsoft.KeyVault/vaults",
"apiVersion": "2021-04-01-preview",
"apiVersion": "2021-06-01-preview",
"name": "[parameters('keyvaultName')]",
"location": "[parameters('location')]",
"tags": "[parameters('tags')]",
Expand All @@ -2783,6 +2783,7 @@
"ipRules": [],
"virtualNetworkRules": []
},
"publicNetworkAccess": "Disabled",
"sku": {
"family": "A",
"name": "standard"
Expand Down Expand Up @@ -3191,7 +3192,7 @@
"_generator": {
"name": "bicep",
"version": "0.4.1124.51302",
"templateHash": "14201920356500171973"
"templateHash": "6420410304354563673"
}
},
"parameters": {
Expand Down Expand Up @@ -3262,7 +3263,7 @@
"_generator": {
"name": "bicep",
"version": "0.4.1124.51302",
"templateHash": "16240531194403531210"
"templateHash": "13765916949238564881"
}
},
"parameters": {
Expand Down Expand Up @@ -3322,7 +3323,7 @@
"resources": [
{
"type": "Microsoft.Synapse/privateLinkHubs",
"apiVersion": "2021-03-01",
"apiVersion": "2021-06-01",
"name": "[variables('synapsePrivatelinkHubNameCleaned')]",
"location": "[if(contains(variables('synapsePrivatelinkHubRegions'), parameters('location')), parameters('location'), 'northeurope')]",
"tags": "[parameters('tags')]",
Expand Down
3 changes: 2 additions & 1 deletion infra/modules/services/keyvault.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ param privateDnsZoneIdKeyVault string = ''
var keyVaultPrivateEndpointName = '${keyVault.name}-private-endpoint'

// Resources
resource keyVault 'Microsoft.KeyVault/vaults@2021-04-01-preview' = {
resource keyVault 'Microsoft.KeyVault/vaults@2021-06-01-preview' = {
name: keyvaultName
location: location
tags: tags
Expand All @@ -34,6 +34,7 @@ resource keyVault 'Microsoft.KeyVault/vaults@2021-04-01-preview' = {
ipRules: []
virtualNetworkRules: []
}
publicNetworkAccess: 'Disabled'
sku: {
family: 'A'
name: 'standard'
Expand Down
2 changes: 1 addition & 1 deletion infra/modules/services/synapseprivatelinkhub.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ var synapsePrivatelinkHubRegions = [
]

// Resources
resource synapsePrivatelinkHub 'Microsoft.Synapse/privateLinkHubs@2021-03-01' = {
resource synapsePrivatelinkHub 'Microsoft.Synapse/privateLinkHubs@2021-06-01' = {
name: synapsePrivatelinkHubNameCleaned
location: contains(synapsePrivatelinkHubRegions, location) ? location : 'northeurope'
tags: tags
Expand Down