Last active
May 24, 2022 10:20
-
-
Save migara/f2ac58b5945ea4b18e470c450ee27230 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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