Skip to content

Commit 8f7e509

Browse files
authored
chore: Add more outputs
chore: add more outputs
2 parents cfe3b07 + 17fcff1 commit 8f7e509

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

outputs.tf

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,46 @@ output "aws_wafv2_capacity" {
88
value = aws_wafv2_web_acl.this.capacity
99
}
1010

11+
output "aws_wafv2_custom_response_body" {
12+
description = "The custom response body configuration of the WAF WebACL."
13+
value = aws_wafv2_web_acl.this.custom_response_body
14+
}
15+
16+
output "aws_wafv2_default_action" {
17+
description = "The default action of the WAF WebACL."
18+
value = aws_wafv2_web_acl.this.default_action
19+
}
20+
1121
output "aws_wafv2_id" {
1222
description = "The ID of the WAF WebACL."
1323
value = aws_wafv2_web_acl.this.id
1424
}
1525

26+
output "aws_wafv2_name" {
27+
description = "The name of the WAF WebACL."
28+
value = aws_wafv2_web_acl.this.name
29+
}
30+
31+
output "aws_wafv2_rule" {
32+
description = "The rules configuration of the WAF WebACL."
33+
value = aws_wafv2_web_acl.this.rule
34+
}
35+
36+
output "aws_wafv2_scope" {
37+
description = "The scope of the WAF WebACL."
38+
value = aws_wafv2_web_acl.this.scope
39+
}
40+
1641
output "aws_wafv2_tags_all" {
1742
description = "Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block."
1843
value = aws_wafv2_web_acl.this.tags_all
1944
}
2045

46+
output "aws_wafv2_visibility_config" {
47+
description = "The visibility configuration of the WAF WebACL."
48+
value = aws_wafv2_web_acl.this.visibility_config
49+
}
50+
2151
output "aws_wafv2_web_acl_logging_configuration_id" {
2252
description = "The Amazon Resource Name (ARN) of the WAFv2 Web ACL."
2353
value = aws_wafv2_web_acl_logging_configuration.this[*].id

0 commit comments

Comments
 (0)