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

vcd_nsxt_firewall missing option "Applied To" #1067

Open
ErikVenema opened this issue Jun 13, 2023 · 1 comment
Open

vcd_nsxt_firewall missing option "Applied To" #1067

ErikVenema opened this issue Jun 13, 2023 · 1 comment
Assignees

Comments

@ErikVenema
Copy link

The resource vcd_nsxt_firewall is missing the option Applied To which I am able to select in the GUI.

Terraform Version

Terraform v1.4.4
on linux_amd64
+ provider registry.terraform.io/vmware/vcd v3.9.0

Affected Resource(s)

Please list the resources as a list, for example:

  • vcd_nsxt_firewall

Terraform Configuration Files

terraform {
  required_providers {
    vcd = {
      source  = "vmware/vcd"
      version = "3.9.0"
    }
  }
}

provider "vcd" {
  auth_type = "token"
  token     = var.vcd_token
  url       = var.vcd_api_url
  org       = var.vcd_org
  vdc       = var.vcd_vdc
}

resource "vcd_nsxt_firewall" "testing" {
  edge_gateway_id = data.vcd_nsxt_edgegateway.testing.id

  rule {
    action               = "ALLOW"
    name                 = "first rule"
    direction            = "IN-OUT"
    ip_protocol          = "IPV4"
    source_ids           = [vcd_nsxt_security_group.frontend.id]
    destination_ids      = vcd_nsxt_security_group.group.*.id
    app_port_profile_ids = [data.vcd_nsxt_app_port_profile.ssh.id, vcd_nsxt_app_port_profile.custom-app.id]
    ##########################
    ## applied_to   = "missing"
    ##########################
  }
}

Expected Behavior

I should be able to use the Applied To option in the vcd_nsxt_firewall resource

Actual Behavior

The Applied To option is missing from the resource.

Steps to Reproduce

Please list the steps required to reproduce the issue, for example:

  1. terraform apply

User Access rights

vCloud Organization Administrator

References

image

@Didainius Didainius self-assigned this Jun 15, 2023
@Didainius
Copy link
Collaborator

To the ones interested in this issue - we have another related one where a query popped up - #1199 (comment)

Could you share your thoughts on the suggestion in above link?

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

2 participants