mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-12 16:36:18 -06:00
12 lines
226 B
HCL
12 lines
226 B
HCL
output "subnet_group" {
|
|
value = "${aws_db_subnet_group.default.name}"
|
|
}
|
|
|
|
output "db_instance_id" {
|
|
value = "${aws_db_instance.default.id}"
|
|
}
|
|
|
|
output "db_instance_address" {
|
|
value = "${aws_db_instance.default.address}"
|
|
}
|