1. Packages
  2. Snowflake
Snowflake v0.50.2 published on Friday, Mar 8, 2024 by Pulumi

Snowflake

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

    The Snowflake provider for Pulumi can be used to provision any of the cloud resources available in Snowflake. The Snowflake provider must be configured with credentials to deploy and update resources in Snowflake.

    Example

    const snowflake = require("@pulumi/snowflake")
    
    const user = new snowflake.User("ts-user")
    
    import * as snowflake from "@pulumi/snowflake";
    
    const user = new snowflake.User("ts-user")
    
    import pulumi_snowflake as snowflake
    
    user = snowflake.User("py-user")
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
        snowflake "github.com/pulumi/pulumi-snowflake/sdk/go/snowflake"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
            user, err := snowflake.NewUser(ctx, "go-user", nil)
    		if err != nil {
    			return err
    		}
    
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Threading.Tasks;
    using Pulumi;
    using Pulumi.Snowflake;
    
    class Program
    {
        static Task Main() =>
            Deployment.Run(() => {
                var user = new Snowflake.User("cs-user", new Snowflake.UserArgs{});
            });
    }
    
    snowflake logo
    Snowflake v0.50.2 published on Friday, Mar 8, 2024 by Pulumi