We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63ce440 commit 672591fCopy full SHA for 672591f
modules/rule-group/main.tf
@@ -2,6 +2,7 @@ resource "aws_wafv2_rule_group" "this" {
2
name = var.name
3
description = var.description
4
scope = var.scope
5
+ region = var.region
6
capacity = var.capacity
7
tags = var.tags
8
modules/rule-group/variables.tf
@@ -14,6 +14,12 @@ variable "scope" {
14
type = string
15
}
16
17
+variable "region" {
18
+ description = "(Optional) Region where this resource will be managed. Defaults to the Region set in the provider configuration."
19
+ type = string
20
+ default = null
21
+}
22
+
23
variable "capacity" {
24
description = "(Required, Forces new resource) The web ACL capacity units (WCUs) required for this rule group."
25
type = number
0 commit comments