Skip to content

Instantly share code, notes, and snippets.

@migara
Created April 22, 2022 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save migara/e9887ab2efe185062092308ddcc1e275 to your computer and use it in GitHub Desktop.
Save migara/e9887ab2efe185062092308ddcc1e275 to your computer and use it in GitHub Desktop.
resource "cloudngfwaws_security_rule" "example" {
rulestack = cloudngfwaws_rulestack.example.name
priority = 100
name = "example-security-rule"
description = "Configured via Terraform"
source {
cidrs = ["any"]
}
destination {
cidrs = ["10.1.1.0/24"]
}
applications = ["web-browsing"]
category {}
action = "Allow"
logging = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment