Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
terraform-aws-security-group
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-security-group
Commits
5f35ec28
Unverified
Commit
5f35ec28
authored
Aug 20, 2020
by
sojinss4u
Committed by
GitHub
Aug 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: Allow custom Name tag for security group (#187)
parent
743e57b6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
main.tf
main.tf
+2
-2
No files found.
main.tf
View file @
5f35ec28
...
@@ -21,10 +21,10 @@ resource "aws_security_group" "this" {
...
@@ -21,10 +21,10 @@ resource "aws_security_group" "this" {
revoke_rules_on_delete
=
var
.
revoke_rules_on_delete
revoke_rules_on_delete
=
var
.
revoke_rules_on_delete
tags
=
merge
(
tags
=
merge
(
var
.
tags
,
{
{
"Name"
=
format
(
"%s"
,
var
.
name
)
"Name"
=
format
(
"%s"
,
var
.
name
)
}
,
}
,
var
.
tags
,
)
)
}
}
...
@@ -40,10 +40,10 @@ resource "aws_security_group" "this_name_prefix" {
...
@@ -40,10 +40,10 @@ resource "aws_security_group" "this_name_prefix" {
revoke_rules_on_delete
=
var
.
revoke_rules_on_delete
revoke_rules_on_delete
=
var
.
revoke_rules_on_delete
tags
=
merge
(
tags
=
merge
(
var
.
tags
,
{
{
"Name"
=
format
(
"%s"
,
var
.
name
)
"Name"
=
format
(
"%s"
,
var
.
name
)
}
,
}
,
var
.
tags
,
)
)
lifecycle
{
lifecycle
{
...
...
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