File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -34,31 +34,31 @@ You can go to the examples folder, however the usage of the module could be like
3434
3535``` hcl
3636module "vpc" {
37- source = "../../ "
37+ source = "github.com/terraform-google-modules/terraform-google-network "
3838 project_id = "<PROJECT ID>"
3939 vpc_name = "example-vpc"
4040
4141 subnets = [
4242 {
43- subnet_name = "subnet-01"
44- subnet_ip = "10.10.10.0/24"
45- subnet_region = "us-west1"
46- subnet_private_access = false
43+ subnet_name = "subnet-01"
44+ subnet_ip = "10.10.10.0/24"
45+ subnet_region = "us-west1"
46+ subnet_private_access = false
4747 },
4848 {
49- subnet_name = "subnet-02"
50- subnet_ip = "10.10.20.0/24"
51- subnet_region = "us-west1"
52- subnet_private_access = false
49+ subnet_name = "subnet-02"
50+ subnet_ip = "10.10.20.0/24"
51+ subnet_region = "us-west1"
52+ subnet_private_access = false
5353 },
5454 ]
5555
5656 secondary_ranges = {
5757 subnet-01 = [
58- {
59- range_name = "subnet-01-secondary-01"
60- ip_cidr_range = "192.168.64.0/24"
61- },
58+ {
59+ range_name = "subnet-01-secondary-01"
60+ ip_cidr_range = "192.168.64.0/24"
61+ },
6262 ]
6363
6464 subnet-02 = []
You can’t perform that action at this time.
0 commit comments