We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f726c99 commit f54c8d4Copy full SHA for f54c8d4
outputs.tf
@@ -230,3 +230,17 @@ output "ephemeral_block_device" {
230
null
231
)
232
}
233
+
234
+################################################################################
235
+# Security Group
236
237
238
+output "security_group_arn" {
239
+ description = "Amazon Resource Name (ARN) of the security group"
240
+ value = try(aws_security_group.this[0].arn, null)
241
+}
242
243
+output "security_group_id" {
244
+ description = "ID of the security group"
245
+ value = try(aws_security_group.this[0].id, null)
246
0 commit comments