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
fd98462c
Unverified
Commit
fd98462c
authored
Jun 20, 2020
by
Ilia Lazebnik
Committed by
GitHub
Jun 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: Add support for tagging egress only internet gateway (#430)
parent
639fe65e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
main.tf
main.tf
+8
-0
versions.tf
versions.tf
+1
-1
No files found.
main.tf
View file @
fd98462c
...
@@ -106,6 +106,14 @@ resource "aws_egress_only_internet_gateway" "this" {
...
@@ -106,6 +106,14 @@ resource "aws_egress_only_internet_gateway" "this" {
count
=
var
.
create_vpc
&&
var
.
enable_ipv6
&&
local
.
max_subnet_length
>
0
?
1
:
0
count
=
var
.
create_vpc
&&
var
.
enable_ipv6
&&
local
.
max_subnet_length
>
0
?
1
:
0
vpc_id
=
local
.
vpc_id
vpc_id
=
local
.
vpc_id
tags
=
merge
(
{
"Name"
=
format
(
"%s"
,
var
.
name
)
}
,
var
.
tags
,
var
.
igw_tags
,
)
}
}
################
################
...
...
versions.tf
View file @
fd98462c
...
@@ -2,6 +2,6 @@ terraform {
...
@@ -2,6 +2,6 @@ terraform {
required_version
=
">= 0.12.6, < 0.14"
required_version
=
">= 0.12.6, < 0.14"
required_providers
{
required_providers
{
aws
=
"~> 2.5
3
"
aws
=
"~> 2.5
7
"
}
}
}
}
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