1. Packages
  2. Snowflake
  3. API Docs
  4. NetworkPolicyAttachment
Snowflake v0.50.2 published on Friday, Mar 8, 2024 by Pulumi

snowflake.NetworkPolicyAttachment

Explore with Pulumi AI

snowflake logo
Snowflake v0.50.2 published on Friday, Mar 8, 2024 by Pulumi

    Import

     $ pulumi import snowflake:index/networkPolicyAttachment:NetworkPolicyAttachment example attachment_policyname
    

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Snowflake = Pulumi.Snowflake;
    
    return await Deployment.RunAsync(() => 
    {
        var attach = new Snowflake.NetworkPolicyAttachment("attach", new()
        {
            NetworkPolicyName = "policy",
            SetForAccount = false,
            Users = new[]
            {
                "user1",
                "user2",
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-snowflake/sdk/go/snowflake"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := snowflake.NewNetworkPolicyAttachment(ctx, "attach", &snowflake.NetworkPolicyAttachmentArgs{
    			NetworkPolicyName: pulumi.String("policy"),
    			SetForAccount:     pulumi.Bool(false),
    			Users: pulumi.StringArray{
    				pulumi.String("user1"),
    				pulumi.String("user2"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.NetworkPolicyAttachment;
    import com.pulumi.snowflake.NetworkPolicyAttachmentArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var attach = new NetworkPolicyAttachment("attach", NetworkPolicyAttachmentArgs.builder()        
                .networkPolicyName("policy")
                .setForAccount(false)
                .users(            
                    "user1",
                    "user2")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    attach = snowflake.NetworkPolicyAttachment("attach",
        network_policy_name="policy",
        set_for_account=False,
        users=[
            "user1",
            "user2",
        ])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    const attach = new snowflake.NetworkPolicyAttachment("attach", {
        networkPolicyName: "policy",
        setForAccount: false,
        users: [
            "user1",
            "user2",
        ],
    });
    
    resources:
      attach:
        type: snowflake:NetworkPolicyAttachment
        properties:
          networkPolicyName: policy
          setForAccount: false
          users:
            - user1
            - user2
    

    Create NetworkPolicyAttachment Resource

    new NetworkPolicyAttachment(name: string, args: NetworkPolicyAttachmentArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkPolicyAttachment(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                network_policy_name: Optional[str] = None,
                                set_for_account: Optional[bool] = None,
                                users: Optional[Sequence[str]] = None)
    @overload
    def NetworkPolicyAttachment(resource_name: str,
                                args: NetworkPolicyAttachmentArgs,
                                opts: Optional[ResourceOptions] = None)
    func NewNetworkPolicyAttachment(ctx *Context, name string, args NetworkPolicyAttachmentArgs, opts ...ResourceOption) (*NetworkPolicyAttachment, error)
    public NetworkPolicyAttachment(string name, NetworkPolicyAttachmentArgs args, CustomResourceOptions? opts = null)
    public NetworkPolicyAttachment(String name, NetworkPolicyAttachmentArgs args)
    public NetworkPolicyAttachment(String name, NetworkPolicyAttachmentArgs args, CustomResourceOptions options)
    
    type: snowflake:NetworkPolicyAttachment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args NetworkPolicyAttachmentArgs
    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 NetworkPolicyAttachmentArgs
    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 NetworkPolicyAttachmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkPolicyAttachmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkPolicyAttachmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    NetworkPolicyAttachment Resource Properties

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

    Inputs

    The NetworkPolicyAttachment resource accepts the following input properties:

    NetworkPolicyName string
    Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
    SetForAccount bool
    Specifies whether the network policy should be applied globally to your Snowflake account\n\n\n\nNote: The Snowflake user running pulumi up must be on an IP address allowed by the network policy to set that policy globally on the Snowflake account.\n\n\n\nAdditionally, a Snowflake account can only have one network policy set globally at any given time. This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true, the final policy set on the account will be non-deterministic.
    Users List<string>
    Specifies which users the network policy should be attached to
    NetworkPolicyName string
    Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
    SetForAccount bool
    Specifies whether the network policy should be applied globally to your Snowflake account\n\n\n\nNote: The Snowflake user running pulumi up must be on an IP address allowed by the network policy to set that policy globally on the Snowflake account.\n\n\n\nAdditionally, a Snowflake account can only have one network policy set globally at any given time. This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true, the final policy set on the account will be non-deterministic.
    Users []string
    Specifies which users the network policy should be attached to
    networkPolicyName String
    Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
    setForAccount Boolean
    Specifies whether the network policy should be applied globally to your Snowflake account\n\n\n\nNote: The Snowflake user running pulumi up must be on an IP address allowed by the network policy to set that policy globally on the Snowflake account.\n\n\n\nAdditionally, a Snowflake account can only have one network policy set globally at any given time. This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true, the final policy set on the account will be non-deterministic.
    users List<String>
    Specifies which users the network policy should be attached to
    networkPolicyName string
    Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
    setForAccount boolean
    Specifies whether the network policy should be applied globally to your Snowflake account\n\n\n\nNote: The Snowflake user running pulumi up must be on an IP address allowed by the network policy to set that policy globally on the Snowflake account.\n\n\n\nAdditionally, a Snowflake account can only have one network policy set globally at any given time. This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true, the final policy set on the account will be non-deterministic.
    users string[]
    Specifies which users the network policy should be attached to
    network_policy_name str
    Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
    set_for_account bool
    Specifies whether the network policy should be applied globally to your Snowflake account\n\n\n\nNote: The Snowflake user running pulumi up must be on an IP address allowed by the network policy to set that policy globally on the Snowflake account.\n\n\n\nAdditionally, a Snowflake account can only have one network policy set globally at any given time. This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true, the final policy set on the account will be non-deterministic.
    users Sequence[str]
    Specifies which users the network policy should be attached to
    networkPolicyName String
    Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
    setForAccount Boolean
    Specifies whether the network policy should be applied globally to your Snowflake account\n\n\n\nNote: The Snowflake user running pulumi up must be on an IP address allowed by the network policy to set that policy globally on the Snowflake account.\n\n\n\nAdditionally, a Snowflake account can only have one network policy set globally at any given time. This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true, the final policy set on the account will be non-deterministic.
    users List<String>
    Specifies which users the network policy should be attached to

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NetworkPolicyAttachment Resource

    Get an existing NetworkPolicyAttachment 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?: NetworkPolicyAttachmentState, opts?: CustomResourceOptions): NetworkPolicyAttachment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            network_policy_name: Optional[str] = None,
            set_for_account: Optional[bool] = None,
            users: Optional[Sequence[str]] = None) -> NetworkPolicyAttachment
    func GetNetworkPolicyAttachment(ctx *Context, name string, id IDInput, state *NetworkPolicyAttachmentState, opts ...ResourceOption) (*NetworkPolicyAttachment, error)
    public static NetworkPolicyAttachment Get(string name, Input<string> id, NetworkPolicyAttachmentState? state, CustomResourceOptions? opts = null)
    public static NetworkPolicyAttachment get(String name, Output<String> id, NetworkPolicyAttachmentState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    NetworkPolicyName string
    Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
    SetForAccount bool
    Specifies whether the network policy should be applied globally to your Snowflake account\n\n\n\nNote: The Snowflake user running pulumi up must be on an IP address allowed by the network policy to set that policy globally on the Snowflake account.\n\n\n\nAdditionally, a Snowflake account can only have one network policy set globally at any given time. This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true, the final policy set on the account will be non-deterministic.
    Users List<string>
    Specifies which users the network policy should be attached to
    NetworkPolicyName string
    Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
    SetForAccount bool
    Specifies whether the network policy should be applied globally to your Snowflake account\n\n\n\nNote: The Snowflake user running pulumi up must be on an IP address allowed by the network policy to set that policy globally on the Snowflake account.\n\n\n\nAdditionally, a Snowflake account can only have one network policy set globally at any given time. This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true, the final policy set on the account will be non-deterministic.
    Users []string
    Specifies which users the network policy should be attached to
    networkPolicyName String
    Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
    setForAccount Boolean
    Specifies whether the network policy should be applied globally to your Snowflake account\n\n\n\nNote: The Snowflake user running pulumi up must be on an IP address allowed by the network policy to set that policy globally on the Snowflake account.\n\n\n\nAdditionally, a Snowflake account can only have one network policy set globally at any given time. This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true, the final policy set on the account will be non-deterministic.
    users List<String>
    Specifies which users the network policy should be attached to
    networkPolicyName string
    Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
    setForAccount boolean
    Specifies whether the network policy should be applied globally to your Snowflake account\n\n\n\nNote: The Snowflake user running pulumi up must be on an IP address allowed by the network policy to set that policy globally on the Snowflake account.\n\n\n\nAdditionally, a Snowflake account can only have one network policy set globally at any given time. This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true, the final policy set on the account will be non-deterministic.
    users string[]
    Specifies which users the network policy should be attached to
    network_policy_name str
    Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
    set_for_account bool
    Specifies whether the network policy should be applied globally to your Snowflake account\n\n\n\nNote: The Snowflake user running pulumi up must be on an IP address allowed by the network policy to set that policy globally on the Snowflake account.\n\n\n\nAdditionally, a Snowflake account can only have one network policy set globally at any given time. This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true, the final policy set on the account will be non-deterministic.
    users Sequence[str]
    Specifies which users the network policy should be attached to
    networkPolicyName String
    Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
    setForAccount Boolean
    Specifies whether the network policy should be applied globally to your Snowflake account\n\n\n\nNote: The Snowflake user running pulumi up must be on an IP address allowed by the network policy to set that policy globally on the Snowflake account.\n\n\n\nAdditionally, a Snowflake account can only have one network policy set globally at any given time. This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true, the final policy set on the account will be non-deterministic.
    users List<String>
    Specifies which users the network policy should be attached to

    Package Details

    Repository
    Snowflake pulumi/pulumi-snowflake
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the snowflake Terraform Provider.
    snowflake logo
    Snowflake v0.50.2 published on Friday, Mar 8, 2024 by Pulumi