Skip to content

Latest commit

 

History

History
72 lines (52 loc) · 937 Bytes

aws_wafregional_rule.md

File metadata and controls

72 lines (52 loc) · 937 Bytes

aws_wafregional_rule

back

Index

Terraform

terraform {
  required_providers {
    aws = ">= 3.35.0"
  }
}

top

Example Usage

module "aws_wafregional_rule" {
  source = "./modules/aws/d/aws_wafregional_rule"

  # name - (required) is a type of string
  name = null
}

top

Variables

variable "name" {
  description = "(required)"
  type        = string
}

top

Datasource

data "aws_wafregional_rule" "this" {
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

output "id" {
  description = "returns a string"
  value       = data.aws_wafregional_rule.this.id
}

output "this" {
  value = aws_wafregional_rule.this
}

top