generated from aws-ia/.github
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from drewmullen/contig-block
add option for contig blocks
- Loading branch information
Showing
8 changed files
with
77 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
*.tfstate | ||
*.tfstate.* | ||
terraform.tfvars | ||
.terraform | ||
|
||
# Crash log files | ||
crash.log | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
module "ipv6_contiguous" { | ||
# source = "aws-ia/ipam/aws" | ||
source = "../.." | ||
|
||
top_cidr = null | ||
top_netmask_length = "52" | ||
address_family = "ipv6" | ||
ipam_scope_type = "public" | ||
top_aws_service = "ec2" | ||
top_publicly_advertisable = false | ||
top_public_ip_source = "amazon" | ||
top_locale = "us-east-1" | ||
|
||
pool_configurations = { | ||
us-east-1 = { | ||
name = "ipv6 us-east-1" | ||
description = "pool for ipv6 us-east-1" | ||
netmask_length = "55" | ||
locale = "us-east-1" | ||
aws_service = "ec2" | ||
publicly_advertisable = false | ||
public_ip_source = "amazon" | ||
|
||
sub_pools = { | ||
team_a = { | ||
name = "team_a" | ||
netmask_length = "56" | ||
aws_service = "ec2" | ||
publicly_advertisable = false | ||
public_ip_source = "amazon" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters