Commit c5b10d1a authored by Damien Gustave's avatar Damien Gustave Committed by GitHub

chore: Adds database_subnet_group_name as an output variable (#592)

parent 0027771e
...@@ -715,6 +715,7 @@ No Modules. ...@@ -715,6 +715,7 @@ No Modules.
| database\_route\_table\_ids | List of IDs of database route tables | | database\_route\_table\_ids | List of IDs of database route tables |
| database\_subnet\_arns | List of ARNs of database subnets | | database\_subnet\_arns | List of ARNs of database subnets |
| database\_subnet\_group | ID of database subnet group | | 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 | List of IDs of database subnets |
| database\_subnets\_cidr\_blocks | List of cidr\_blocks 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 | | database\_subnets\_ipv6\_cidr\_blocks | List of IPv6 cidr\_blocks of database subnets in an IPv6 enabled VPC |
......
...@@ -133,6 +133,11 @@ output "database_subnet_group" { ...@@ -133,6 +133,11 @@ output "database_subnet_group" {
value = concat(aws_db_subnet_group.database.*.id, [""])[0] 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" { output "redshift_subnets" {
description = "List of IDs of redshift subnets" description = "List of IDs of redshift subnets"
value = aws_subnet.redshift.*.id value = aws_subnet.redshift.*.id
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment