Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.

Add ssh security group attributes #133

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -329,3 +329,13 @@ output "internal_route_tables" {
output "external_route_tables" {
value = "${module.vpc.external_rtb_id}"
}

// The external ssh security group ID.
output "external_ssh" {
value = "${module.security_groups.external_ssh}"
}

// The internal ssh security group ID.
output "internal_ssh" {
value = "${module.security_groups.internal_ssh}"
}