snowflake logo
Snowflake v0.20.0, Mar 27 23

Snowflake

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{});
        });
}