diff --git a/ois-scanner/output.tf b/ois-scanner/output.tf new file mode 100644 index 0000000..9e3bc1c --- /dev/null +++ b/ois-scanner/output.tf @@ -0,0 +1,9 @@ +output "this_security_group_id" { + description = "Created security group ID" + value = "${aws_security_group.this_security_group.id}" +} + +output "this_security_group_arn" { + description = "Created security group ARN" + value = "${aws_security_group.this_security_group.arn}" +}