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

dome9_aws_security_group does not set the security group rule description #175

Open
emoshaya opened this issue Feb 21, 2024 · 0 comments
Open

Comments

@emoshaya
Copy link

I would expect the services.inbound.description to set the description in the rule but that is not the case and is not working as expected

resource "dome9_cloud_security_group_rule" "aws_sg_rule" {
  dome9_security_group_id    = "dome9_security_group_id"

  services {
    inbound {
      name          = "FIRST_INBOUND_SERVICE_NAME"
      description   = "DESCRIPTION"
      protocol_type = "PROTOCOL_TYPE"
      port          = "PORT"
      open_for_all  = false
      scope {
        type = "TYPE"
        data = {
          cidr = "CIDR"
          note = "NOTE"
        }
      }
    }
    outbound {
      name          = "NAME"
      description   = "DESCRIPTION"
      protocol_type = "PROTOCOL_TYPE"
      port          = ""
      open_for_all  = true
    }
  }
}
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