Skip to content

Commit 0f87776

Browse files
committed
updated VPC with IPAM config
1 parent 9b57e97 commit 0f87776

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

examples/ipam-managed-vpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ No providers.
3131

3232
| Name | Source | Version |
3333
|------|--------|---------|
34-
| <a name="module_vpc_ipam"></a> [vpc\_ipam](#module\_vpc\_ipam) | ../.. | n/a |
34+
| <a name="module_vpc_ipam"></a> [vpc\_ipam](#module\_vpc\_ipam) | squareops/vpc/aws | n/a |
3535

3636
## Resources
3737

examples/ipam-managed-vpc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ locals {
1212
}
1313

1414
module "vpc_ipam" {
15-
source = "../.."
15+
source = "squareops/vpc/aws"
1616

1717
name = local.name
1818

examples/vpc-native-ipv6/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ No providers.
2929

3030
| Name | Source | Version |
3131
|------|--------|---------|
32-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | ../.. | n/a |
32+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | squareops/vpc/aws | n/a |
3333

3434
## Resources
3535

examples/vpc-native-ipv6/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
locals {
22
name = "skaf"
3-
region = "ap-south-1"
3+
region = "us-east-1"
44
environment = "stage"
55
additional_aws_tags = {
66
Owner = "SquareOps"
@@ -13,7 +13,7 @@ locals {
1313
}
1414

1515
module "vpc" {
16-
source = "../.."
16+
source = "squareops/vpc/aws"
1717
name = local.name
1818
vpc_cidr = local.vpc_cidr
1919
ipv6_only = local.ipv6_only

examples/vpc-with-secondary-cidr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ No providers.
2929

3030
| Name | Source | Version |
3131
|------|--------|---------|
32-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | ../.. | n/a |
32+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | squareops/vpc/aws | n/a |
3333

3434
## Resources
3535

examples/vpc-with-secondary-cidr/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
locals {
22
name = "skaf"
3-
region = "ap-south-1"
3+
region = "us-east-1"
44
environment = "stage"
55
additional_aws_tags = {
66
Owner = "SquareOps"
@@ -13,7 +13,7 @@ locals {
1313
}
1414

1515
module "vpc" {
16-
source = "../.."
16+
source = "squareops/vpc/aws"
1717
name = local.name
1818
vpc_cidr = local.vpc_cidr
1919
environment = local.environment

0 commit comments

Comments
 (0)