We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 231dc8c commit 827e678Copy full SHA for 827e678
README.md
@@ -36,6 +36,7 @@ Only SSH access is allowed to the bastion host.
36
37
* ssh_user - SSH user to login to bastion
38
* security_group_id - ID of the security group the bastion host is launched in.
39
+ * asg_id - The ID of the AutoScalingGroup the bastion host is launched within.
40
41
## Example:
42
outputs.tf
@@ -5,3 +5,7 @@ output "ssh_user" {
5
output "security_group_id" {
6
value = "${aws_security_group.bastion.id}"
7
}
8
+
9
+output "asg_id" {
10
+ value = "${aws_autoscaling_group.bastion.id}"
11
+}
0 commit comments