Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
terraform-aws-vpc
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Terraform Modules
terraform-aws-vpc
Commits
c25a58ee
Commit
c25a58ee
authored
Sep 30, 2019
by
Anton Babenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated network-acls example with IPv6 rules
parent
ec228e00
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
main.tf
examples/network-acls/main.tf
+24
-0
No files found.
examples/network-acls/main.tf
View file @
c25a58ee
...
...
@@ -105,6 +105,14 @@ locals {
protocol
=
"tcp"
cidr_block
=
"0.0.0.0/0"
},
{
rule_number
=
140
rule_action
=
"allow"
from_port
=
80
to_port
=
80
protocol
=
"tcp"
ipv6_cidr_block
=
"::/0"
},
]
public_outbound
=
[
{
...
...
@@ -147,6 +155,14 @@ locals {
protocol
=
"icmp"
cidr_block
=
"10.0.0.0/22"
},
{
rule_number
=
150
rule_action
=
"allow"
from_port
=
90
to_port
=
90
protocol
=
"tcp"
ipv6_cidr_block
=
"::/0"
},
]
elasticache_outbound
=
[
{
...
...
@@ -173,6 +189,14 @@ locals {
protocol
=
"icmp"
cidr_block
=
"10.0.0.0/22"
},
{
rule_number
=
150
rule_action
=
"allow"
from_port
=
90
to_port
=
90
protocol
=
"tcp"
ipv6_cidr_block
=
"::/0"
},
]
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment