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 abcf865 commit c2c7ad7Copy full SHA for c2c7ad7
outputs.tf
@@ -1,19 +1,19 @@
1
output "security_group_id" {
2
- value = aws_security_group.default.id
+ value = aws_security_group.sg.id
3
description = "Security Group ID"
4
}
5
6
output "security_group_arn" {
7
- value = aws_security_group.default.arn
+ value = aws_security_group.sg.arn
8
description = "ARN of the security group."
9
10
11
output "ingress_rules" {
12
- value = aws_security_group.default.ingress
+ value = aws_security_group.sg.ingress
13
description = "All your ingress rules."
14
15
16
output "egress_rules" {
17
- value = aws_security_group.default.egress
+ value = aws_security_group.sg.egress
18
description = "All your egress rules."
19
0 commit comments