Skip to content

Instantly share code, notes, and snippets.

@migara
Last active May 24, 2022 10:20
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/f2ac58b5945ea4b18e470c450ee27230 to your computer and use it in GitHub Desktop.
Save migara/f2ac58b5945ea4b18e470c450ee27230 to your computer and use it in GitHub Desktop.
resource "cloudngfwaws_ngfw" "example" {
name = "example-instance"
vpc_id = aws_vpc.example.id
account_id = "12345678"
description = "Example description"
endpoint_mode = "ServiceManaged"
subnet_mapping {
subnet_id = aws_subnet.firewall_subnet.id
}
rulestack = "terraform-rulestack"
tags = {
Foo = "bar"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment