Merge pull request #381 from terraform-google-modules/sruffilli-patch-2

Minor doc updates
This commit is contained in:
Simone Ruffilli 2021-12-07 09:22:37 +01:00 committed by GitHub
commit 31f91bc37d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -12,7 +12,7 @@ This module also allows defining custom template variables, to centralize common
```hcl
module "hierarchical" {
source = "./modules/resource-factories/hierarchical-firewall"
source = "./factories/hierarchical-firewall-policies"
config_folder = "firewall/hierarchical"
templates_folder = "firewall/templates"
}

View File

@ -10,7 +10,7 @@ This module implements a resource factory which allows the creation and manageme
```hcl
module "subnets" {
source = "./modules/resource-factories/subnets"
source = "./factories/subnets"
config_folder = "subnets"
}
# tftest:skip
@ -48,9 +48,8 @@ iam_groups: ["lorem@example.com"] # Opt- Groups to grant compute/networkUser to
iam_service_accounts: ["foobar@project-id.iam.gserviceaccount.com"]
# Opt- SAs to grant compute/networkUser to
secondary_ip_ranges: # Opt- List of secondary IP ranges
- name: secondary-range-a # Name for the secondary range
ip_cidr_range: 192.168.0.0/24 # IP range for the secondary range
- secondary-range-a: 192.168.0.0/24
# Secondary ranges in name: cidr format
```
<!-- BEGIN TFDOC -->