1. Packages
  2. Snowflake Provider
  3. API Docs
  4. NetworkPolicyAttachment
Snowflake v1.2.0 published on Monday, Apr 14, 2025 by Pulumi

snowflake.NetworkPolicyAttachment

Explore with Pulumi AI

Import

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

Create NetworkPolicyAttachment Resource

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

Constructor syntax

new NetworkPolicyAttachment(name: string, args: NetworkPolicyAttachmentArgs, opts?: CustomResourceOptions);
@overload
def NetworkPolicyAttachment(resource_name: str,
                            args: NetworkPolicyAttachmentArgs,
                            opts: Optional[ResourceOptions] = None)

@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)
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.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. NetworkPolicyAttachmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. NetworkPolicyAttachmentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. NetworkPolicyAttachmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. NetworkPolicyAttachmentArgs
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 networkPolicyAttachmentResource = new Snowflake.NetworkPolicyAttachment("networkPolicyAttachmentResource", new()
{
    NetworkPolicyName = "string",
    SetForAccount = false,
    Users = new[]
    {
        "string",
    },
});
Copy
example, err := snowflake.NewNetworkPolicyAttachment(ctx, "networkPolicyAttachmentResource", &snowflake.NetworkPolicyAttachmentArgs{
	NetworkPolicyName: pulumi.String("string"),
	SetForAccount:     pulumi.Bool(false),
	Users: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var networkPolicyAttachmentResource = new NetworkPolicyAttachment("networkPolicyAttachmentResource", NetworkPolicyAttachmentArgs.builder()
    .networkPolicyName("string")
    .setForAccount(false)
    .users("string")
    .build());
Copy
network_policy_attachment_resource = snowflake.NetworkPolicyAttachment("networkPolicyAttachmentResource",
    network_policy_name="string",
    set_for_account=False,
    users=["string"])
Copy
const networkPolicyAttachmentResource = new snowflake.NetworkPolicyAttachment("networkPolicyAttachmentResource", {
    networkPolicyName: "string",
    setForAccount: false,
    users: ["string"],
});
Copy
type: snowflake:NetworkPolicyAttachment
properties:
    networkPolicyName: string
    setForAccount: false
    users:
        - string
Copy

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

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

The NetworkPolicyAttachment resource accepts the following input properties:

NetworkPolicyName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
SetForAccount bool
(Default: false) 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
This property is required.
Changes to this property will trigger replacement.
string
Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
SetForAccount bool
(Default: false) 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
This property is required.
Changes to this property will trigger replacement.
String
Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
setForAccount Boolean
(Default: false) 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
This property is required.
Changes to this property will trigger replacement.
string
Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
setForAccount boolean
(Default: false) 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
This property is required.
Changes to this property will trigger replacement.
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
(Default: false) 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
This property is required.
Changes to this property will trigger replacement.
String
Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
setForAccount Boolean
(Default: false) 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)
resources:  _:    type: snowflake:NetworkPolicyAttachment    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 Changes to this property will trigger replacement. string
Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
SetForAccount bool
(Default: false) 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 Changes to this property will trigger replacement. string
Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
SetForAccount bool
(Default: false) 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 Changes to this property will trigger replacement. String
Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
setForAccount Boolean
(Default: false) 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 Changes to this property will trigger replacement. string
Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
setForAccount boolean
(Default: false) 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 Changes to this property will trigger replacement. 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
(Default: false) 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 Changes to this property will trigger replacement. String
Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
setForAccount Boolean
(Default: false) 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.