Skip to content

Commit

Permalink
Documentation bug fixes in README snippets - revision02
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanskid committed Sep 20, 2024
1 parent 0389fc2 commit 9697adf
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/dedicated_vmseries/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ terraform destroy
### Providers

- `random`
- `azurerm`
- `local`
- `azurerm`

### Modules
Name | Version | Source | Description
Expand Down
2 changes: 1 addition & 1 deletion modules/loadbalancer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module "lbi" {
frontend_ips = {
ha = {
name = "HA"
subnet_id = azurerm_subnet.this.id
subnet_id = "/subscription/xxxx/......."
private_ip_address = "10.0.0.1"
in_rules = {
ha = {
Expand Down
2 changes: 1 addition & 1 deletion modules/natgw/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module "natgw" {
name = "NATGW_name"
resource_group_name = "resource_group_name"
location = "region_name"
subnet_ids = { "a_subnet_name" = module.vnet.subnet_ids["a_subnet_name"] }
subnet_ids = { "subnet_name" = "/subscription/xxxx/......." }
idle_timeout = 120
}
```
Expand Down
2 changes: 1 addition & 1 deletion modules/virtual_network_gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module "vng" {
ip_configurations = each.value.ip_configurations
instance_settings = each.value.instance_settings
subnet_id = module.vnet[each.value.vnet_key].subnet_ids[each.value.subnet_key]
subnet_id = "/subscription/xxxx/......."
azure_bgp_peer_addresses = each.value.azure_bgp_peer_addresses
bgp = each.value.bgp
Expand Down
6 changes: 3 additions & 3 deletions modules/vmss/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Therefore each Scale Set instance should be configured with a dedicated Applicat
Below you can find a simple example deploying a Scale Set w/o autoscaling, using defaults where possible:

```hcl
module "vmss" {
module "vmss" {
source = "PaloAltoNetworks/swfw-modules/azurerm//modules/vmss"
name = "ngfw-vmss"
Expand All @@ -74,8 +74,8 @@ Below you can find a simple example deploying a Scale Set w/o autoscaling, using
}
authentication = {
username = "panadmin"
password = "c0mpl1c@t3d"
username = "panadmin"
password = "c0mpl1c@t3d"
disable_password_authentication = false
}
Expand Down
4 changes: 2 additions & 2 deletions modules/vnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ This module is designed to work in several *modes* depending on which variables

```hcl
create_virtual_network = false
name = azurerm_virtual_network.this.name
resource_group_name = azurerm_resource_group.this.name
name = "existing-vnet"
resource_group_name = "existing-rg"
region = "North Europe"
network_security_groups = {
inbound = {
Expand Down

0 comments on commit 9697adf

Please sign in to comment.