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
c5b10d1a
Unverified
Commit
c5b10d1a
authored
Feb 22, 2021
by
Damien Gustave
Committed by
GitHub
Feb 22, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: Adds database_subnet_group_name as an output variable (#592)
parent
0027771e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
README.md
README.md
+1
-0
outputs.tf
outputs.tf
+5
-0
No files found.
README.md
View file @
c5b10d1a
...
...
@@ -715,6 +715,7 @@ No Modules.
| database
\_
route
\_
table
\_
ids | List of IDs of database route tables |
| database
\_
subnet
\_
arns | List of ARNs of database subnets |
| database
\_
subnet
\_
group | ID of database subnet group |
| database
\_
subnet
\_
group
\_
name | Name of database subnet group |
| database
\_
subnets | List of IDs of database subnets |
| database
\_
subnets
\_
cidr
\_
blocks | List of cidr
\_
blocks of database subnets |
| database
\_
subnets
\_
ipv6
\_
cidr
\_
blocks | List of IPv6 cidr
\_
blocks of database subnets in an IPv6 enabled VPC |
...
...
outputs.tf
View file @
c5b10d1a
...
...
@@ -133,6 +133,11 @@ output "database_subnet_group" {
value
=
concat
(
aws_db_subnet_group
.
database
.*.
id
,
[
""
]
)
[
0
]
}
output
"database_subnet_group_name"
{
description
=
"Name of database subnet group"
value
=
concat
(
aws_db_subnet_group
.
database
.*.
name
,
[
""
]
)
[
0
]
}
output
"redshift_subnets"
{
description
=
"List of IDs of redshift subnets"
value
=
aws_subnet
.
redshift
.*.
id
...
...
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