Skip to content

Commit 0433512

Browse files
authored
Merge pull request #6 from AnalyticalFlavorSystems/feature/ssh-security-group-attributes
Add ssh security group attributes
2 parents a8a147e + 41e3169 commit 0433512

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

main.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,3 +334,13 @@ output "internal_route_tables" {
334334
output "external_route_tables" {
335335
value = "${module.vpc.external_rtb_id}"
336336
}
337+
338+
// The external ssh security group ID.
339+
output "external_ssh" {
340+
value = "${module.security_groups.external_ssh}"
341+
}
342+
343+
// The internal ssh security group ID.
344+
output "internal_ssh" {
345+
value = "${module.security_groups.internal_ssh}"
346+
}

0 commit comments

Comments
 (0)