snowflake.NetworkPolicyAttachment
Explore with Pulumi AI
Example Usage
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",
],
});
import pulumi
import pulumi_snowflake as snowflake
attach = snowflake.NetworkPolicyAttachment("attach",
network_policy_name="policy",
set_for_account=False,
users=[
"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
})
}
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 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());
}
}
resources:
attach:
type: snowflake:NetworkPolicyAttachment
properties:
networkPolicyName: policy
setForAccount: false
users:
- user1
- user2
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 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.
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",
},
});
example, err := snowflake.NewNetworkPolicyAttachment(ctx, "networkPolicyAttachmentResource", &snowflake.NetworkPolicyAttachmentArgs{
NetworkPolicyName: pulumi.String("string"),
SetForAccount: pulumi.Bool(false),
Users: pulumi.StringArray{
pulumi.String("string"),
},
})
var networkPolicyAttachmentResource = new NetworkPolicyAttachment("networkPolicyAttachmentResource", NetworkPolicyAttachmentArgs.builder()
.networkPolicyName("string")
.setForAccount(false)
.users("string")
.build());
network_policy_attachment_resource = snowflake.NetworkPolicyAttachment("networkPolicyAttachmentResource",
network_policy_name="string",
set_for_account=False,
users=["string"])
const networkPolicyAttachmentResource = new snowflake.NetworkPolicyAttachment("networkPolicyAttachmentResource", {
networkPolicyName: "string",
setForAccount: false,
users: ["string"],
});
type: snowflake:NetworkPolicyAttachment
properties:
networkPolicyName: string
setForAccount: false
users:
- string
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:
- Network
Policy stringName - Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
- Set
For boolAccount - 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 haveset_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
- Network
Policy stringName - Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
- Set
For boolAccount - 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 haveset_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 StringName - Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
- set
For BooleanAccount - 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 haveset_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
- network
Policy stringName - Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
- set
For booleanAccount - 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 haveset_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_ strname - Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
- set_
for_ boolaccount - 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 haveset_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
- network
Policy StringName - Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
- set
For BooleanAccount - 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 haveset_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.
- Network
Policy stringName - Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
- Set
For boolAccount - 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 haveset_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
- Network
Policy stringName - Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
- Set
For boolAccount - 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 haveset_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 StringName - Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
- set
For BooleanAccount - 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 haveset_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
- network
Policy stringName - Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
- set
For booleanAccount - 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 haveset_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_ strname - Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
- set_
for_ boolaccount - 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 haveset_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
- network
Policy StringName - Specifies the identifier for the network policy; must be unique for the account in which the network policy is created.
- set
For BooleanAccount - 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 haveset_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
Import
$ pulumi import snowflake:index/networkPolicyAttachment:NetworkPolicyAttachment example attachment_policyname
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflake
Terraform Provider.