published on Thursday, Feb 26, 2026 by Pulumi
published on Thursday, Feb 26, 2026 by Pulumi
!> Caution: Preview Feature This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to preview_features_enabled field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
!> Warning This resource shouldn’t be used with snowflake.CurrentAccount resource in the same configuration, as it may lead to unexpected behavior.
Specifies the authentication policy to use for the current account. To set the authentication 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.AuthenticationPolicy("default", {
database: "prod",
schema: "security",
name: "default_policy",
});
const attachment = new snowflake.AccountAuthenticationPolicyAttachment("attachment", {authenticationPolicy: _default.fullyQualifiedName});
import pulumi
import pulumi_snowflake as snowflake
default = snowflake.AuthenticationPolicy("default",
database="prod",
schema="security",
name="default_policy")
attachment = snowflake.AccountAuthenticationPolicyAttachment("attachment", authentication_policy=default.fully_qualified_name)
package main
import (
"github.com/pulumi/pulumi-snowflake/sdk/v2/go/snowflake"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_default, err := snowflake.NewAuthenticationPolicy(ctx, "default", &snowflake.AuthenticationPolicyArgs{
Database: pulumi.String("prod"),
Schema: pulumi.String("security"),
Name: pulumi.String("default_policy"),
})
if err != nil {
return err
}
_, err = snowflake.NewAccountAuthenticationPolicyAttachment(ctx, "attachment", &snowflake.AccountAuthenticationPolicyAttachmentArgs{
AuthenticationPolicy: _default.FullyQualifiedName,
})
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.AuthenticationPolicy("default", new()
{
Database = "prod",
Schema = "security",
Name = "default_policy",
});
var attachment = new Snowflake.AccountAuthenticationPolicyAttachment("attachment", new()
{
AuthenticationPolicy = @default.FullyQualifiedName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.snowflake.AuthenticationPolicy;
import com.pulumi.snowflake.AuthenticationPolicyArgs;
import com.pulumi.snowflake.AccountAuthenticationPolicyAttachment;
import com.pulumi.snowflake.AccountAuthenticationPolicyAttachmentArgs;
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 AuthenticationPolicy("default", AuthenticationPolicyArgs.builder()
.database("prod")
.schema("security")
.name("default_policy")
.build());
var attachment = new AccountAuthenticationPolicyAttachment("attachment", AccountAuthenticationPolicyAttachmentArgs.builder()
.authenticationPolicy(default_.fullyQualifiedName())
.build());
}
}
resources:
default:
type: snowflake:AuthenticationPolicy
properties:
database: prod
schema: security
name: default_policy
attachment:
type: snowflake:AccountAuthenticationPolicyAttachment
properties:
authenticationPolicy: ${default.fullyQualifiedName}
Note Instead of using fully_qualified_name, you can reference objects managed outside Terraform by constructing a correct ID, consult identifiers guide.
Note If a field has a default value, it is shown next to the type in the schema.
Create AccountAuthenticationPolicyAttachment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AccountAuthenticationPolicyAttachment(name: string, args: AccountAuthenticationPolicyAttachmentArgs, opts?: CustomResourceOptions);@overload
def AccountAuthenticationPolicyAttachment(resource_name: str,
args: AccountAuthenticationPolicyAttachmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AccountAuthenticationPolicyAttachment(resource_name: str,
opts: Optional[ResourceOptions] = None,
authentication_policy: Optional[str] = None)func NewAccountAuthenticationPolicyAttachment(ctx *Context, name string, args AccountAuthenticationPolicyAttachmentArgs, opts ...ResourceOption) (*AccountAuthenticationPolicyAttachment, error)public AccountAuthenticationPolicyAttachment(string name, AccountAuthenticationPolicyAttachmentArgs args, CustomResourceOptions? opts = null)
public AccountAuthenticationPolicyAttachment(String name, AccountAuthenticationPolicyAttachmentArgs args)
public AccountAuthenticationPolicyAttachment(String name, AccountAuthenticationPolicyAttachmentArgs args, CustomResourceOptions options)
type: snowflake:AccountAuthenticationPolicyAttachment
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 AccountAuthenticationPolicyAttachmentArgs
- 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 AccountAuthenticationPolicyAttachmentArgs
- 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 AccountAuthenticationPolicyAttachmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountAuthenticationPolicyAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountAuthenticationPolicyAttachmentArgs
- 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 accountAuthenticationPolicyAttachmentResource = new Snowflake.AccountAuthenticationPolicyAttachment("accountAuthenticationPolicyAttachmentResource", new()
{
AuthenticationPolicy = "string",
});
example, err := snowflake.NewAccountAuthenticationPolicyAttachment(ctx, "accountAuthenticationPolicyAttachmentResource", &snowflake.AccountAuthenticationPolicyAttachmentArgs{
AuthenticationPolicy: pulumi.String("string"),
})
var accountAuthenticationPolicyAttachmentResource = new AccountAuthenticationPolicyAttachment("accountAuthenticationPolicyAttachmentResource", AccountAuthenticationPolicyAttachmentArgs.builder()
.authenticationPolicy("string")
.build());
account_authentication_policy_attachment_resource = snowflake.AccountAuthenticationPolicyAttachment("accountAuthenticationPolicyAttachmentResource", authentication_policy="string")
const accountAuthenticationPolicyAttachmentResource = new snowflake.AccountAuthenticationPolicyAttachment("accountAuthenticationPolicyAttachmentResource", {authenticationPolicy: "string"});
type: snowflake:AccountAuthenticationPolicyAttachment
properties:
authenticationPolicy: string
AccountAuthenticationPolicyAttachment 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 AccountAuthenticationPolicyAttachment resource accepts the following input properties:
- Authentication
Policy string - Qualified name (
"db"."schema".<span pulumi-lang-nodejs=""policyName"" pulumi-lang-dotnet=""PolicyName"" pulumi-lang-go=""policyName"" pulumi-lang-python=""policy_name"" pulumi-lang-yaml=""policyName"" pulumi-lang-java=""policyName"">"policy_name"</span>) of the authentication policy to apply to the current account.
- Authentication
Policy string - Qualified name (
"db"."schema".<span pulumi-lang-nodejs=""policyName"" pulumi-lang-dotnet=""PolicyName"" pulumi-lang-go=""policyName"" pulumi-lang-python=""policy_name"" pulumi-lang-yaml=""policyName"" pulumi-lang-java=""policyName"">"policy_name"</span>) of the authentication policy to apply to the current account.
- authentication
Policy String - Qualified name (
"db"."schema".<span pulumi-lang-nodejs=""policyName"" pulumi-lang-dotnet=""PolicyName"" pulumi-lang-go=""policyName"" pulumi-lang-python=""policy_name"" pulumi-lang-yaml=""policyName"" pulumi-lang-java=""policyName"">"policy_name"</span>) of the authentication policy to apply to the current account.
- authentication
Policy string - Qualified name (
"db"."schema".<span pulumi-lang-nodejs=""policyName"" pulumi-lang-dotnet=""PolicyName"" pulumi-lang-go=""policyName"" pulumi-lang-python=""policy_name"" pulumi-lang-yaml=""policyName"" pulumi-lang-java=""policyName"">"policy_name"</span>) of the authentication policy to apply to the current account.
- authentication_
policy str - Qualified name (
"db"."schema".<span pulumi-lang-nodejs=""policyName"" pulumi-lang-dotnet=""PolicyName"" pulumi-lang-go=""policyName"" pulumi-lang-python=""policy_name"" pulumi-lang-yaml=""policyName"" pulumi-lang-java=""policyName"">"policy_name"</span>) of the authentication policy to apply to the current account.
- authentication
Policy String - Qualified name (
"db"."schema".<span pulumi-lang-nodejs=""policyName"" pulumi-lang-dotnet=""PolicyName"" pulumi-lang-go=""policyName"" pulumi-lang-python=""policy_name"" pulumi-lang-yaml=""policyName"" pulumi-lang-java=""policyName"">"policy_name"</span>) of the authentication policy to apply to the current account.
Outputs
All input properties are implicitly available as output properties. Additionally, the AccountAuthenticationPolicyAttachment 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 AccountAuthenticationPolicyAttachment Resource
Get an existing AccountAuthenticationPolicyAttachment 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?: AccountAuthenticationPolicyAttachmentState, opts?: CustomResourceOptions): AccountAuthenticationPolicyAttachment@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authentication_policy: Optional[str] = None) -> AccountAuthenticationPolicyAttachmentfunc GetAccountAuthenticationPolicyAttachment(ctx *Context, name string, id IDInput, state *AccountAuthenticationPolicyAttachmentState, opts ...ResourceOption) (*AccountAuthenticationPolicyAttachment, error)public static AccountAuthenticationPolicyAttachment Get(string name, Input<string> id, AccountAuthenticationPolicyAttachmentState? state, CustomResourceOptions? opts = null)public static AccountAuthenticationPolicyAttachment get(String name, Output<String> id, AccountAuthenticationPolicyAttachmentState state, CustomResourceOptions options)resources: _: type: snowflake:AccountAuthenticationPolicyAttachment 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.
- Authentication
Policy string - Qualified name (
"db"."schema".<span pulumi-lang-nodejs=""policyName"" pulumi-lang-dotnet=""PolicyName"" pulumi-lang-go=""policyName"" pulumi-lang-python=""policy_name"" pulumi-lang-yaml=""policyName"" pulumi-lang-java=""policyName"">"policy_name"</span>) of the authentication policy to apply to the current account.
- Authentication
Policy string - Qualified name (
"db"."schema".<span pulumi-lang-nodejs=""policyName"" pulumi-lang-dotnet=""PolicyName"" pulumi-lang-go=""policyName"" pulumi-lang-python=""policy_name"" pulumi-lang-yaml=""policyName"" pulumi-lang-java=""policyName"">"policy_name"</span>) of the authentication policy to apply to the current account.
- authentication
Policy String - Qualified name (
"db"."schema".<span pulumi-lang-nodejs=""policyName"" pulumi-lang-dotnet=""PolicyName"" pulumi-lang-go=""policyName"" pulumi-lang-python=""policy_name"" pulumi-lang-yaml=""policyName"" pulumi-lang-java=""policyName"">"policy_name"</span>) of the authentication policy to apply to the current account.
- authentication
Policy string - Qualified name (
"db"."schema".<span pulumi-lang-nodejs=""policyName"" pulumi-lang-dotnet=""PolicyName"" pulumi-lang-go=""policyName"" pulumi-lang-python=""policy_name"" pulumi-lang-yaml=""policyName"" pulumi-lang-java=""policyName"">"policy_name"</span>) of the authentication policy to apply to the current account.
- authentication_
policy str - Qualified name (
"db"."schema".<span pulumi-lang-nodejs=""policyName"" pulumi-lang-dotnet=""PolicyName"" pulumi-lang-go=""policyName"" pulumi-lang-python=""policy_name"" pulumi-lang-yaml=""policyName"" pulumi-lang-java=""policyName"">"policy_name"</span>) of the authentication policy to apply to the current account.
- authentication
Policy String - Qualified name (
"db"."schema".<span pulumi-lang-nodejs=""policyName"" pulumi-lang-dotnet=""PolicyName"" pulumi-lang-go=""policyName"" pulumi-lang-python=""policy_name"" pulumi-lang-yaml=""policyName"" pulumi-lang-java=""policyName"">"policy_name"</span>) of the authentication 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
snowflakeTerraform Provider.
published on Thursday, Feb 26, 2026 by Pulumi
