1. Packages
  2. Nsxt Provider
  3. API Docs
  4. PolicyGatewayDnsForwarder
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

nsxt.PolicyGatewayDnsForwarder

Explore with Pulumi AI

nsxt logo
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

    Create PolicyGatewayDnsForwarder Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PolicyGatewayDnsForwarder(name: string, args: PolicyGatewayDnsForwarderArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyGatewayDnsForwarder(resource_name: str,
                                  args: PolicyGatewayDnsForwarderArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyGatewayDnsForwarder(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  default_forwarder_zone_path: Optional[str] = None,
                                  display_name: Optional[str] = None,
                                  gateway_path: Optional[str] = None,
                                  listener_ip: Optional[str] = None,
                                  cache_size: Optional[float] = None,
                                  conditional_forwarder_zone_paths: Optional[Sequence[str]] = None,
                                  context: Optional[PolicyGatewayDnsForwarderContextArgs] = None,
                                  description: Optional[str] = None,
                                  enabled: Optional[bool] = None,
                                  log_level: Optional[str] = None,
                                  policy_gateway_dns_forwarder_id: Optional[str] = None,
                                  tags: Optional[Sequence[PolicyGatewayDnsForwarderTagArgs]] = None)
    func NewPolicyGatewayDnsForwarder(ctx *Context, name string, args PolicyGatewayDnsForwarderArgs, opts ...ResourceOption) (*PolicyGatewayDnsForwarder, error)
    public PolicyGatewayDnsForwarder(string name, PolicyGatewayDnsForwarderArgs args, CustomResourceOptions? opts = null)
    public PolicyGatewayDnsForwarder(String name, PolicyGatewayDnsForwarderArgs args)
    public PolicyGatewayDnsForwarder(String name, PolicyGatewayDnsForwarderArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyGatewayDnsForwarder
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PolicyGatewayDnsForwarderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args PolicyGatewayDnsForwarderArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args PolicyGatewayDnsForwarderArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyGatewayDnsForwarderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyGatewayDnsForwarderArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var policyGatewayDnsForwarderResource = new Nsxt.PolicyGatewayDnsForwarder("policyGatewayDnsForwarderResource", new()
    {
        DefaultForwarderZonePath = "string",
        DisplayName = "string",
        GatewayPath = "string",
        ListenerIp = "string",
        CacheSize = 0,
        ConditionalForwarderZonePaths = new[]
        {
            "string",
        },
        Context = new Nsxt.Inputs.PolicyGatewayDnsForwarderContextArgs
        {
            ProjectId = "string",
        },
        Description = "string",
        Enabled = false,
        LogLevel = "string",
        PolicyGatewayDnsForwarderId = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyGatewayDnsForwarderTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
    });
    
    example, err := nsxt.NewPolicyGatewayDnsForwarder(ctx, "policyGatewayDnsForwarderResource", &nsxt.PolicyGatewayDnsForwarderArgs{
    	DefaultForwarderZonePath: pulumi.String("string"),
    	DisplayName:              pulumi.String("string"),
    	GatewayPath:              pulumi.String("string"),
    	ListenerIp:               pulumi.String("string"),
    	CacheSize:                pulumi.Float64(0),
    	ConditionalForwarderZonePaths: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Context: &nsxt.PolicyGatewayDnsForwarderContextArgs{
    		ProjectId: pulumi.String("string"),
    	},
    	Description:                 pulumi.String("string"),
    	Enabled:                     pulumi.Bool(false),
    	LogLevel:                    pulumi.String("string"),
    	PolicyGatewayDnsForwarderId: pulumi.String("string"),
    	Tags: nsxt.PolicyGatewayDnsForwarderTagArray{
    		&nsxt.PolicyGatewayDnsForwarderTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    })
    
    var policyGatewayDnsForwarderResource = new PolicyGatewayDnsForwarder("policyGatewayDnsForwarderResource", PolicyGatewayDnsForwarderArgs.builder()
        .defaultForwarderZonePath("string")
        .displayName("string")
        .gatewayPath("string")
        .listenerIp("string")
        .cacheSize(0)
        .conditionalForwarderZonePaths("string")
        .context(PolicyGatewayDnsForwarderContextArgs.builder()
            .projectId("string")
            .build())
        .description("string")
        .enabled(false)
        .logLevel("string")
        .policyGatewayDnsForwarderId("string")
        .tags(PolicyGatewayDnsForwarderTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .build());
    
    policy_gateway_dns_forwarder_resource = nsxt.PolicyGatewayDnsForwarder("policyGatewayDnsForwarderResource",
        default_forwarder_zone_path="string",
        display_name="string",
        gateway_path="string",
        listener_ip="string",
        cache_size=0,
        conditional_forwarder_zone_paths=["string"],
        context={
            "project_id": "string",
        },
        description="string",
        enabled=False,
        log_level="string",
        policy_gateway_dns_forwarder_id="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }])
    
    const policyGatewayDnsForwarderResource = new nsxt.PolicyGatewayDnsForwarder("policyGatewayDnsForwarderResource", {
        defaultForwarderZonePath: "string",
        displayName: "string",
        gatewayPath: "string",
        listenerIp: "string",
        cacheSize: 0,
        conditionalForwarderZonePaths: ["string"],
        context: {
            projectId: "string",
        },
        description: "string",
        enabled: false,
        logLevel: "string",
        policyGatewayDnsForwarderId: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
    });
    
    type: nsxt:PolicyGatewayDnsForwarder
    properties:
        cacheSize: 0
        conditionalForwarderZonePaths:
            - string
        context:
            projectId: string
        defaultForwarderZonePath: string
        description: string
        displayName: string
        enabled: false
        gatewayPath: string
        listenerIp: string
        logLevel: string
        policyGatewayDnsForwarderId: string
        tags:
            - scope: string
              tag: string
    

    PolicyGatewayDnsForwarder Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The PolicyGatewayDnsForwarder resource accepts the following input properties:

    DefaultForwarderZonePath string
    Path of Default Forwarder Zone.
    DisplayName string
    Display name of the resource.
    GatewayPath string
    Path of Tier0 or Tier1 Gateway.
    ListenerIp string
    IP address on which the DNS Forwarder listens.
    CacheSize double
    Cache size in KB.
    ConditionalForwarderZonePaths List<string>
    List of conditional (FQDN) Zone Paths (Maximum 5 zones).
    Context PolicyGatewayDnsForwarderContext
    The context which the object belongs to
    Description string
    Description of the resource.
    Enabled bool
    Flag to indicate whether this DNS Forwarder is enabled. Defaults to true.
    LogLevel string
    Log Level for related messages, one of DEBUG, INFO, WARNING, ERROR, FATAL. Defaults to INFO.
    PolicyGatewayDnsForwarderId string
    ID of the resource.
    Tags List<PolicyGatewayDnsForwarderTag>
    A list of scope + tag pairs to associate with this resource.
    DefaultForwarderZonePath string
    Path of Default Forwarder Zone.
    DisplayName string
    Display name of the resource.
    GatewayPath string
    Path of Tier0 or Tier1 Gateway.
    ListenerIp string
    IP address on which the DNS Forwarder listens.
    CacheSize float64
    Cache size in KB.
    ConditionalForwarderZonePaths []string
    List of conditional (FQDN) Zone Paths (Maximum 5 zones).
    Context PolicyGatewayDnsForwarderContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    Enabled bool
    Flag to indicate whether this DNS Forwarder is enabled. Defaults to true.
    LogLevel string
    Log Level for related messages, one of DEBUG, INFO, WARNING, ERROR, FATAL. Defaults to INFO.
    PolicyGatewayDnsForwarderId string
    ID of the resource.
    Tags []PolicyGatewayDnsForwarderTagArgs
    A list of scope + tag pairs to associate with this resource.
    defaultForwarderZonePath String
    Path of Default Forwarder Zone.
    displayName String
    Display name of the resource.
    gatewayPath String
    Path of Tier0 or Tier1 Gateway.
    listenerIp String
    IP address on which the DNS Forwarder listens.
    cacheSize Double
    Cache size in KB.
    conditionalForwarderZonePaths List<String>
    List of conditional (FQDN) Zone Paths (Maximum 5 zones).
    context PolicyGatewayDnsForwarderContext
    The context which the object belongs to
    description String
    Description of the resource.
    enabled Boolean
    Flag to indicate whether this DNS Forwarder is enabled. Defaults to true.
    logLevel String
    Log Level for related messages, one of DEBUG, INFO, WARNING, ERROR, FATAL. Defaults to INFO.
    policyGatewayDnsForwarderId String
    ID of the resource.
    tags List<PolicyGatewayDnsForwarderTag>
    A list of scope + tag pairs to associate with this resource.
    defaultForwarderZonePath string
    Path of Default Forwarder Zone.
    displayName string
    Display name of the resource.
    gatewayPath string
    Path of Tier0 or Tier1 Gateway.
    listenerIp string
    IP address on which the DNS Forwarder listens.
    cacheSize number
    Cache size in KB.
    conditionalForwarderZonePaths string[]
    List of conditional (FQDN) Zone Paths (Maximum 5 zones).
    context PolicyGatewayDnsForwarderContext
    The context which the object belongs to
    description string
    Description of the resource.
    enabled boolean
    Flag to indicate whether this DNS Forwarder is enabled. Defaults to true.
    logLevel string
    Log Level for related messages, one of DEBUG, INFO, WARNING, ERROR, FATAL. Defaults to INFO.
    policyGatewayDnsForwarderId string
    ID of the resource.
    tags PolicyGatewayDnsForwarderTag[]
    A list of scope + tag pairs to associate with this resource.
    default_forwarder_zone_path str
    Path of Default Forwarder Zone.
    display_name str
    Display name of the resource.
    gateway_path str
    Path of Tier0 or Tier1 Gateway.
    listener_ip str
    IP address on which the DNS Forwarder listens.
    cache_size float
    Cache size in KB.
    conditional_forwarder_zone_paths Sequence[str]
    List of conditional (FQDN) Zone Paths (Maximum 5 zones).
    context PolicyGatewayDnsForwarderContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    enabled bool
    Flag to indicate whether this DNS Forwarder is enabled. Defaults to true.
    log_level str
    Log Level for related messages, one of DEBUG, INFO, WARNING, ERROR, FATAL. Defaults to INFO.
    policy_gateway_dns_forwarder_id str
    ID of the resource.
    tags Sequence[PolicyGatewayDnsForwarderTagArgs]
    A list of scope + tag pairs to associate with this resource.
    defaultForwarderZonePath String
    Path of Default Forwarder Zone.
    displayName String
    Display name of the resource.
    gatewayPath String
    Path of Tier0 or Tier1 Gateway.
    listenerIp String
    IP address on which the DNS Forwarder listens.
    cacheSize Number
    Cache size in KB.
    conditionalForwarderZonePaths List<String>
    List of conditional (FQDN) Zone Paths (Maximum 5 zones).
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    enabled Boolean
    Flag to indicate whether this DNS Forwarder is enabled. Defaults to true.
    logLevel String
    Log Level for related messages, one of DEBUG, INFO, WARNING, ERROR, FATAL. Defaults to INFO.
    policyGatewayDnsForwarderId String
    ID of the resource.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PolicyGatewayDnsForwarder resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the policy resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the policy resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX path of the policy resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id string
    The provider-assigned unique ID for this managed resource.
    path string
    The NSX path of the policy resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id str
    The provider-assigned unique ID for this managed resource.
    path str
    The NSX path of the policy resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX path of the policy resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.

    Look up Existing PolicyGatewayDnsForwarder Resource

    Get an existing PolicyGatewayDnsForwarder resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: PolicyGatewayDnsForwarderState, opts?: CustomResourceOptions): PolicyGatewayDnsForwarder
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cache_size: Optional[float] = None,
            conditional_forwarder_zone_paths: Optional[Sequence[str]] = None,
            context: Optional[PolicyGatewayDnsForwarderContextArgs] = None,
            default_forwarder_zone_path: Optional[str] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            enabled: Optional[bool] = None,
            gateway_path: Optional[str] = None,
            listener_ip: Optional[str] = None,
            log_level: Optional[str] = None,
            path: Optional[str] = None,
            policy_gateway_dns_forwarder_id: Optional[str] = None,
            revision: Optional[float] = None,
            tags: Optional[Sequence[PolicyGatewayDnsForwarderTagArgs]] = None) -> PolicyGatewayDnsForwarder
    func GetPolicyGatewayDnsForwarder(ctx *Context, name string, id IDInput, state *PolicyGatewayDnsForwarderState, opts ...ResourceOption) (*PolicyGatewayDnsForwarder, error)
    public static PolicyGatewayDnsForwarder Get(string name, Input<string> id, PolicyGatewayDnsForwarderState? state, CustomResourceOptions? opts = null)
    public static PolicyGatewayDnsForwarder get(String name, Output<String> id, PolicyGatewayDnsForwarderState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyGatewayDnsForwarder    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CacheSize double
    Cache size in KB.
    ConditionalForwarderZonePaths List<string>
    List of conditional (FQDN) Zone Paths (Maximum 5 zones).
    Context PolicyGatewayDnsForwarderContext
    The context which the object belongs to
    DefaultForwarderZonePath string
    Path of Default Forwarder Zone.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    Enabled bool
    Flag to indicate whether this DNS Forwarder is enabled. Defaults to true.
    GatewayPath string
    Path of Tier0 or Tier1 Gateway.
    ListenerIp string
    IP address on which the DNS Forwarder listens.
    LogLevel string
    Log Level for related messages, one of DEBUG, INFO, WARNING, ERROR, FATAL. Defaults to INFO.
    Path string
    The NSX path of the policy resource.
    PolicyGatewayDnsForwarderId string
    ID of the resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags List<PolicyGatewayDnsForwarderTag>
    A list of scope + tag pairs to associate with this resource.
    CacheSize float64
    Cache size in KB.
    ConditionalForwarderZonePaths []string
    List of conditional (FQDN) Zone Paths (Maximum 5 zones).
    Context PolicyGatewayDnsForwarderContextArgs
    The context which the object belongs to
    DefaultForwarderZonePath string
    Path of Default Forwarder Zone.
    Description string
    Description of the resource.
    DisplayName string
    Display name of the resource.
    Enabled bool
    Flag to indicate whether this DNS Forwarder is enabled. Defaults to true.
    GatewayPath string
    Path of Tier0 or Tier1 Gateway.
    ListenerIp string
    IP address on which the DNS Forwarder listens.
    LogLevel string
    Log Level for related messages, one of DEBUG, INFO, WARNING, ERROR, FATAL. Defaults to INFO.
    Path string
    The NSX path of the policy resource.
    PolicyGatewayDnsForwarderId string
    ID of the resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags []PolicyGatewayDnsForwarderTagArgs
    A list of scope + tag pairs to associate with this resource.
    cacheSize Double
    Cache size in KB.
    conditionalForwarderZonePaths List<String>
    List of conditional (FQDN) Zone Paths (Maximum 5 zones).
    context PolicyGatewayDnsForwarderContext
    The context which the object belongs to
    defaultForwarderZonePath String
    Path of Default Forwarder Zone.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    enabled Boolean
    Flag to indicate whether this DNS Forwarder is enabled. Defaults to true.
    gatewayPath String
    Path of Tier0 or Tier1 Gateway.
    listenerIp String
    IP address on which the DNS Forwarder listens.
    logLevel String
    Log Level for related messages, one of DEBUG, INFO, WARNING, ERROR, FATAL. Defaults to INFO.
    path String
    The NSX path of the policy resource.
    policyGatewayDnsForwarderId String
    ID of the resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<PolicyGatewayDnsForwarderTag>
    A list of scope + tag pairs to associate with this resource.
    cacheSize number
    Cache size in KB.
    conditionalForwarderZonePaths string[]
    List of conditional (FQDN) Zone Paths (Maximum 5 zones).
    context PolicyGatewayDnsForwarderContext
    The context which the object belongs to
    defaultForwarderZonePath string
    Path of Default Forwarder Zone.
    description string
    Description of the resource.
    displayName string
    Display name of the resource.
    enabled boolean
    Flag to indicate whether this DNS Forwarder is enabled. Defaults to true.
    gatewayPath string
    Path of Tier0 or Tier1 Gateway.
    listenerIp string
    IP address on which the DNS Forwarder listens.
    logLevel string
    Log Level for related messages, one of DEBUG, INFO, WARNING, ERROR, FATAL. Defaults to INFO.
    path string
    The NSX path of the policy resource.
    policyGatewayDnsForwarderId string
    ID of the resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags PolicyGatewayDnsForwarderTag[]
    A list of scope + tag pairs to associate with this resource.
    cache_size float
    Cache size in KB.
    conditional_forwarder_zone_paths Sequence[str]
    List of conditional (FQDN) Zone Paths (Maximum 5 zones).
    context PolicyGatewayDnsForwarderContextArgs
    The context which the object belongs to
    default_forwarder_zone_path str
    Path of Default Forwarder Zone.
    description str
    Description of the resource.
    display_name str
    Display name of the resource.
    enabled bool
    Flag to indicate whether this DNS Forwarder is enabled. Defaults to true.
    gateway_path str
    Path of Tier0 or Tier1 Gateway.
    listener_ip str
    IP address on which the DNS Forwarder listens.
    log_level str
    Log Level for related messages, one of DEBUG, INFO, WARNING, ERROR, FATAL. Defaults to INFO.
    path str
    The NSX path of the policy resource.
    policy_gateway_dns_forwarder_id str
    ID of the resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags Sequence[PolicyGatewayDnsForwarderTagArgs]
    A list of scope + tag pairs to associate with this resource.
    cacheSize Number
    Cache size in KB.
    conditionalForwarderZonePaths List<String>
    List of conditional (FQDN) Zone Paths (Maximum 5 zones).
    context Property Map
    The context which the object belongs to
    defaultForwarderZonePath String
    Path of Default Forwarder Zone.
    description String
    Description of the resource.
    displayName String
    Display name of the resource.
    enabled Boolean
    Flag to indicate whether this DNS Forwarder is enabled. Defaults to true.
    gatewayPath String
    Path of Tier0 or Tier1 Gateway.
    listenerIp String
    IP address on which the DNS Forwarder listens.
    logLevel String
    Log Level for related messages, one of DEBUG, INFO, WARNING, ERROR, FATAL. Defaults to INFO.
    path String
    The NSX path of the policy resource.
    policyGatewayDnsForwarderId String
    ID of the resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this resource.

    Supporting Types

    PolicyGatewayDnsForwarderContext, PolicyGatewayDnsForwarderContextArgs

    ProjectId string
    The ID of the project which the object belongs to
    ProjectId string
    The ID of the project which the object belongs to
    projectId String
    The ID of the project which the object belongs to
    projectId string
    The ID of the project which the object belongs to
    project_id str
    The ID of the project which the object belongs to
    projectId String
    The ID of the project which the object belongs to

    PolicyGatewayDnsForwarderTag, PolicyGatewayDnsForwarderTagArgs

    Scope string
    Tag string
    A list of scope + tag pairs to associate with this resource.
    Scope string
    Tag string
    A list of scope + tag pairs to associate with this resource.
    scope String
    tag String
    A list of scope + tag pairs to associate with this resource.
    scope string
    tag string
    A list of scope + tag pairs to associate with this resource.
    scope str
    tag str
    A list of scope + tag pairs to associate with this resource.
    scope String
    tag String
    A list of scope + tag pairs to associate with this resource.

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware