1. Packages
  2. Snowflake
  3. API Docs
  4. AccountPasswordPolicyAttachment
Snowflake v0.52.0 published on Thursday, Apr 18, 2024 by Pulumi

snowflake.AccountPasswordPolicyAttachment

Explore with Pulumi AI

snowflake logo
Snowflake v0.52.0 published on Thursday, Apr 18, 2024 by Pulumi

    Specifies the password policy to use for the current account. To set the password policy of a different account, use a provider alias.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    const _default = new snowflake.PasswordPolicy("default", {
        database: "prod",
        schema: "security",
    });
    const attachment = new snowflake.AccountPasswordPolicyAttachment("attachment", {passwordPolicy: _default.qualifiedName});
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    default = snowflake.PasswordPolicy("default",
        database="prod",
        schema="security")
    attachment = snowflake.AccountPasswordPolicyAttachment("attachment", password_policy=default.qualified_name)
    
    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.NewPasswordPolicy(ctx, "default", &snowflake.PasswordPolicyArgs{
    			Database: pulumi.String("prod"),
    			Schema:   pulumi.String("security"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = snowflake.NewAccountPasswordPolicyAttachment(ctx, "attachment", &snowflake.AccountPasswordPolicyAttachmentArgs{
    			PasswordPolicy: _default.QualifiedName,
    		})
    		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 @default = new Snowflake.PasswordPolicy("default", new()
        {
            Database = "prod",
            Schema = "security",
        });
    
        var attachment = new Snowflake.AccountPasswordPolicyAttachment("attachment", new()
        {
            PasswordPolicy = @default.QualifiedName,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.PasswordPolicy;
    import com.pulumi.snowflake.PasswordPolicyArgs;
    import com.pulumi.snowflake.AccountPasswordPolicyAttachment;
    import com.pulumi.snowflake.AccountPasswordPolicyAttachmentArgs;
    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 default_ = new PasswordPolicy("default", PasswordPolicyArgs.builder()        
                .database("prod")
                .schema("security")
                .build());
    
            var attachment = new AccountPasswordPolicyAttachment("attachment", AccountPasswordPolicyAttachmentArgs.builder()        
                .passwordPolicy(default_.qualifiedName())
                .build());
    
        }
    }
    
    resources:
      default:
        type: snowflake:PasswordPolicy
        properties:
          database: prod
          schema: security
      attachment:
        type: snowflake:AccountPasswordPolicyAttachment
        properties:
          passwordPolicy: ${default.qualifiedName}
    

    Create AccountPasswordPolicyAttachment Resource

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

    Constructor syntax

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

    Example

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

    var accountPasswordPolicyAttachmentResource = new Snowflake.AccountPasswordPolicyAttachment("accountPasswordPolicyAttachmentResource", new()
    {
        PasswordPolicy = "string",
    });
    
    example, err := snowflake.NewAccountPasswordPolicyAttachment(ctx, "accountPasswordPolicyAttachmentResource", &snowflake.AccountPasswordPolicyAttachmentArgs{
    	PasswordPolicy: pulumi.String("string"),
    })
    
    var accountPasswordPolicyAttachmentResource = new AccountPasswordPolicyAttachment("accountPasswordPolicyAttachmentResource", AccountPasswordPolicyAttachmentArgs.builder()        
        .passwordPolicy("string")
        .build());
    
    account_password_policy_attachment_resource = snowflake.AccountPasswordPolicyAttachment("accountPasswordPolicyAttachmentResource", password_policy="string")
    
    const accountPasswordPolicyAttachmentResource = new snowflake.AccountPasswordPolicyAttachment("accountPasswordPolicyAttachmentResource", {passwordPolicy: "string"});
    
    type: snowflake:AccountPasswordPolicyAttachment
    properties:
        passwordPolicy: string
    

    AccountPasswordPolicyAttachment 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 AccountPasswordPolicyAttachment resource accepts the following input properties:

    PasswordPolicy string
    Qualified name ("db"."schema"."policy_name") of the password policy to apply to the current account.
    PasswordPolicy string
    Qualified name ("db"."schema"."policy_name") of the password policy to apply to the current account.
    passwordPolicy String
    Qualified name ("db"."schema"."policy_name") of the password policy to apply to the current account.
    passwordPolicy string
    Qualified name ("db"."schema"."policy_name") of the password policy to apply to the current account.
    password_policy str
    Qualified name ("db"."schema"."policy_name") of the password policy to apply to the current account.
    passwordPolicy String
    Qualified name ("db"."schema"."policy_name") of the password policy to apply to the current account.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AccountPasswordPolicyAttachment 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 AccountPasswordPolicyAttachment Resource

    Get an existing AccountPasswordPolicyAttachment 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?: AccountPasswordPolicyAttachmentState, opts?: CustomResourceOptions): AccountPasswordPolicyAttachment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            password_policy: Optional[str] = None) -> AccountPasswordPolicyAttachment
    func GetAccountPasswordPolicyAttachment(ctx *Context, name string, id IDInput, state *AccountPasswordPolicyAttachmentState, opts ...ResourceOption) (*AccountPasswordPolicyAttachment, error)
    public static AccountPasswordPolicyAttachment Get(string name, Input<string> id, AccountPasswordPolicyAttachmentState? state, CustomResourceOptions? opts = null)
    public static AccountPasswordPolicyAttachment get(String name, Output<String> id, AccountPasswordPolicyAttachmentState 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:
    PasswordPolicy string
    Qualified name ("db"."schema"."policy_name") of the password policy to apply to the current account.
    PasswordPolicy string
    Qualified name ("db"."schema"."policy_name") of the password policy to apply to the current account.
    passwordPolicy String
    Qualified name ("db"."schema"."policy_name") of the password policy to apply to the current account.
    passwordPolicy string
    Qualified name ("db"."schema"."policy_name") of the password policy to apply to the current account.
    password_policy str
    Qualified name ("db"."schema"."policy_name") of the password policy to apply to the current account.
    passwordPolicy String
    Qualified name ("db"."schema"."policy_name") of the password policy to apply to the current account.

    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.52.0 published on Thursday, Apr 18, 2024 by Pulumi