Skip to content

Commit

Permalink
fix: Remove lock configuration and add tags for environment and role …
Browse files Browse the repository at this point in the history
…in P2S VPN Gateway module
  • Loading branch information
erschef committed Nov 25, 2024
1 parent e8e0dce commit 290186c
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions avm/res/network/p2s-vpn-gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,11 +343,11 @@ module p2sVpnGateway 'br/public:avm/res/network/p2s-vpn-gateway:<version>' = {
enableInternetSecurity: true
isRoutingPreferenceInternet: false
location: '<location>'
lock: {
kind: 'CanNotDelete'
name: 'myCustomLockName'
}
p2SConnectionConfigurationsName: 'p2sConnectionConfig1'
tags: {
Environment: 'Non-Prod'
Role: 'DeploymentValidation'
}
vpnClientAddressPoolAddressPrefixes: [
'10.0.2.0/24'
]
Expand Down Expand Up @@ -390,15 +390,15 @@ module p2sVpnGateway 'br/public:avm/res/network/p2s-vpn-gateway:<version>' = {
"location": {
"value": "<location>"
},
"lock": {
"value": {
"kind": "CanNotDelete",
"name": "myCustomLockName"
}
},
"p2SConnectionConfigurationsName": {
"value": "p2sConnectionConfig1"
},
"tags": {
"value": {
"Environment": "Non-Prod",
"Role": "DeploymentValidation"
}
},
"vpnClientAddressPoolAddressPrefixes": {
"value": [
"10.0.2.0/24"
Expand Down Expand Up @@ -427,11 +427,11 @@ param associatedRouteTableName = 'defaultRouteTable'
param enableInternetSecurity = true
param isRoutingPreferenceInternet = false
param location = '<location>'
param lock = {
kind: 'CanNotDelete'
name: 'myCustomLockName'
}
p2SConnectionConfigurationsName: 'p2sConnectionConfig1'
param tags = {
Environment: 'Non-Prod'
Role: 'DeploymentValidation'
}
param vpnClientAddressPoolAddressPrefixes = [
'10.0.2.0/24'
]
Expand Down

0 comments on commit 290186c

Please sign in to comment.