Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: resource for firewall rule #1134

Open
KylePeterDavies opened this issue Apr 5, 2024 · 0 comments
Open

feature: resource for firewall rule #1134

KylePeterDavies opened this issue Apr 5, 2024 · 0 comments

Comments

@KylePeterDavies
Copy link

KylePeterDavies commented Apr 5, 2024

Is your feature request related to a problem? Please describe.

I would like a separate Terraform Resource for Firewall Rules. Over just a Terraform Resource for Firewall. I have found this useful in AWS. As downstream Infrastructure As Code can just add and remove rules.

Describe the solution you'd like

resource "digitalocean_firewall" "firewall" {
  name = "firewall"
}
resource "digitalocean_firewall_rule" "firewall_rue" {
  firewall  = "firewall"
  type      = "inbound"
  port      = 22
  protocol  = "tcp"
  addresses = ["0.0.0.0/0"]
}

Describe alternatives you've considered

N/A

Additional context

See AWS Security Group and AWS Security Group Rule

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant