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

snowflake.TableGrant

Explore with Pulumi AI

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

    Deprecation This resource is deprecated and will be removed in a future major version release. Please use snowflake.GrantPrivilegesToAccountRole instead.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    const grant = new snowflake.TableGrant("grant", {
        databaseName: "database",
        onFuture: false,
        privilege: "SELECT",
        roles: ["role1"],
        schemaName: "schema",
        shares: ["share1"],
        tableName: "table",
        withGrantOption: false,
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    grant = snowflake.TableGrant("grant",
        database_name="database",
        on_future=False,
        privilege="SELECT",
        roles=["role1"],
        schema_name="schema",
        shares=["share1"],
        table_name="table",
        with_grant_option=False)
    
    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.NewTableGrant(ctx, "grant", &snowflake.TableGrantArgs{
    			DatabaseName: pulumi.String("database"),
    			OnFuture:     pulumi.Bool(false),
    			Privilege:    pulumi.String("SELECT"),
    			Roles: pulumi.StringArray{
    				pulumi.String("role1"),
    			},
    			SchemaName: pulumi.String("schema"),
    			Shares: pulumi.StringArray{
    				pulumi.String("share1"),
    			},
    			TableName:       pulumi.String("table"),
    			WithGrantOption: pulumi.Bool(false),
    		})
    		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 grant = new Snowflake.TableGrant("grant", new()
        {
            DatabaseName = "database",
            OnFuture = false,
            Privilege = "SELECT",
            Roles = new[]
            {
                "role1",
            },
            SchemaName = "schema",
            Shares = new[]
            {
                "share1",
            },
            TableName = "table",
            WithGrantOption = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.TableGrant;
    import com.pulumi.snowflake.TableGrantArgs;
    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 grant = new TableGrant("grant", TableGrantArgs.builder()        
                .databaseName("database")
                .onFuture(false)
                .privilege("SELECT")
                .roles("role1")
                .schemaName("schema")
                .shares("share1")
                .tableName("table")
                .withGrantOption(false)
                .build());
    
        }
    }
    
    resources:
      grant:
        type: snowflake:TableGrant
        properties:
          databaseName: database
          onFuture: false
          privilege: SELECT
          roles:
            - role1
          schemaName: schema
          shares:
            - share1
          tableName: table
          withGrantOption: false
    

    Create TableGrant Resource

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

    Constructor syntax

    new TableGrant(name: string, args: TableGrantArgs, opts?: CustomResourceOptions);
    @overload
    def TableGrant(resource_name: str,
                   args: TableGrantArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def TableGrant(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   database_name: Optional[str] = None,
                   enable_multiple_grants: Optional[bool] = None,
                   on_all: Optional[bool] = None,
                   on_future: Optional[bool] = None,
                   privilege: Optional[str] = None,
                   revert_ownership_to_role_name: Optional[str] = None,
                   roles: Optional[Sequence[str]] = None,
                   schema_name: Optional[str] = None,
                   shares: Optional[Sequence[str]] = None,
                   table_name: Optional[str] = None,
                   with_grant_option: Optional[bool] = None)
    func NewTableGrant(ctx *Context, name string, args TableGrantArgs, opts ...ResourceOption) (*TableGrant, error)
    public TableGrant(string name, TableGrantArgs args, CustomResourceOptions? opts = null)
    public TableGrant(String name, TableGrantArgs args)
    public TableGrant(String name, TableGrantArgs args, CustomResourceOptions options)
    
    type: snowflake:TableGrant
    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 TableGrantArgs
    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 TableGrantArgs
    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 TableGrantArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TableGrantArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TableGrantArgs
    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 tableGrantResource = new Snowflake.TableGrant("tableGrantResource", new()
    {
        DatabaseName = "string",
        EnableMultipleGrants = false,
        OnAll = false,
        OnFuture = false,
        Privilege = "string",
        RevertOwnershipToRoleName = "string",
        Roles = new[]
        {
            "string",
        },
        SchemaName = "string",
        Shares = new[]
        {
            "string",
        },
        TableName = "string",
        WithGrantOption = false,
    });
    
    example, err := snowflake.NewTableGrant(ctx, "tableGrantResource", &snowflake.TableGrantArgs{
    	DatabaseName:              pulumi.String("string"),
    	EnableMultipleGrants:      pulumi.Bool(false),
    	OnAll:                     pulumi.Bool(false),
    	OnFuture:                  pulumi.Bool(false),
    	Privilege:                 pulumi.String("string"),
    	RevertOwnershipToRoleName: pulumi.String("string"),
    	Roles: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SchemaName: pulumi.String("string"),
    	Shares: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TableName:       pulumi.String("string"),
    	WithGrantOption: pulumi.Bool(false),
    })
    
    var tableGrantResource = new TableGrant("tableGrantResource", TableGrantArgs.builder()        
        .databaseName("string")
        .enableMultipleGrants(false)
        .onAll(false)
        .onFuture(false)
        .privilege("string")
        .revertOwnershipToRoleName("string")
        .roles("string")
        .schemaName("string")
        .shares("string")
        .tableName("string")
        .withGrantOption(false)
        .build());
    
    table_grant_resource = snowflake.TableGrant("tableGrantResource",
        database_name="string",
        enable_multiple_grants=False,
        on_all=False,
        on_future=False,
        privilege="string",
        revert_ownership_to_role_name="string",
        roles=["string"],
        schema_name="string",
        shares=["string"],
        table_name="string",
        with_grant_option=False)
    
    const tableGrantResource = new snowflake.TableGrant("tableGrantResource", {
        databaseName: "string",
        enableMultipleGrants: false,
        onAll: false,
        onFuture: false,
        privilege: "string",
        revertOwnershipToRoleName: "string",
        roles: ["string"],
        schemaName: "string",
        shares: ["string"],
        tableName: "string",
        withGrantOption: false,
    });
    
    type: snowflake:TableGrant
    properties:
        databaseName: string
        enableMultipleGrants: false
        onAll: false
        onFuture: false
        privilege: string
        revertOwnershipToRoleName: string
        roles:
            - string
        schemaName: string
        shares:
            - string
        tableName: string
        withGrantOption: false
    

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

    DatabaseName string
    The name of the database containing the current or future tables on which to grant privileges.
    EnableMultipleGrants bool
    When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
    OnAll bool
    When this is set to true and a schemaname is provided, apply this grant on all tables in the given schema. When this is true and no schemaname is provided apply this grant on all tables in the given database. The tablename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
    OnFuture bool
    When this is set to true and a schemaname is provided, apply this grant on all future tables in the given schema. When this is true and no schemaname is provided apply this grant on all future tables in the given database. The tablename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
    Privilege string
    The privilege to grant on the current or future table. To grant all privileges, use the value ALL PRIVILEGES.
    RevertOwnershipToRoleName string
    The name of the role to revert ownership to on destroy. Has no effect unless privilege is set to OWNERSHIP
    Roles List<string>
    Grants privilege to these roles.
    SchemaName string
    The name of the schema containing the current or future tables on which to grant privileges.
    Shares List<string>
    Grants privilege to these shares (only valid if onfuture or onall are unset).
    TableName string
    The name of the table on which to grant privileges immediately (only valid if onfuture or onall are unset).
    WithGrantOption bool
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    DatabaseName string
    The name of the database containing the current or future tables on which to grant privileges.
    EnableMultipleGrants bool
    When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
    OnAll bool
    When this is set to true and a schemaname is provided, apply this grant on all tables in the given schema. When this is true and no schemaname is provided apply this grant on all tables in the given database. The tablename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
    OnFuture bool
    When this is set to true and a schemaname is provided, apply this grant on all future tables in the given schema. When this is true and no schemaname is provided apply this grant on all future tables in the given database. The tablename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
    Privilege string
    The privilege to grant on the current or future table. To grant all privileges, use the value ALL PRIVILEGES.
    RevertOwnershipToRoleName string
    The name of the role to revert ownership to on destroy. Has no effect unless privilege is set to OWNERSHIP
    Roles []string
    Grants privilege to these roles.
    SchemaName string
    The name of the schema containing the current or future tables on which to grant privileges.
    Shares []string
    Grants privilege to these shares (only valid if onfuture or onall are unset).
    TableName string
    The name of the table on which to grant privileges immediately (only valid if onfuture or onall are unset).
    WithGrantOption bool
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    databaseName String
    The name of the database containing the current or future tables on which to grant privileges.
    enableMultipleGrants Boolean
    When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
    onAll Boolean
    When this is set to true and a schemaname is provided, apply this grant on all tables in the given schema. When this is true and no schemaname is provided apply this grant on all tables in the given database. The tablename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
    onFuture Boolean
    When this is set to true and a schemaname is provided, apply this grant on all future tables in the given schema. When this is true and no schemaname is provided apply this grant on all future tables in the given database. The tablename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
    privilege String
    The privilege to grant on the current or future table. To grant all privileges, use the value ALL PRIVILEGES.
    revertOwnershipToRoleName String
    The name of the role to revert ownership to on destroy. Has no effect unless privilege is set to OWNERSHIP
    roles List<String>
    Grants privilege to these roles.
    schemaName String
    The name of the schema containing the current or future tables on which to grant privileges.
    shares List<String>
    Grants privilege to these shares (only valid if onfuture or onall are unset).
    tableName String
    The name of the table on which to grant privileges immediately (only valid if onfuture or onall are unset).
    withGrantOption Boolean
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    databaseName string
    The name of the database containing the current or future tables on which to grant privileges.
    enableMultipleGrants boolean
    When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
    onAll boolean
    When this is set to true and a schemaname is provided, apply this grant on all tables in the given schema. When this is true and no schemaname is provided apply this grant on all tables in the given database. The tablename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
    onFuture boolean
    When this is set to true and a schemaname is provided, apply this grant on all future tables in the given schema. When this is true and no schemaname is provided apply this grant on all future tables in the given database. The tablename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
    privilege string
    The privilege to grant on the current or future table. To grant all privileges, use the value ALL PRIVILEGES.
    revertOwnershipToRoleName string
    The name of the role to revert ownership to on destroy. Has no effect unless privilege is set to OWNERSHIP
    roles string[]
    Grants privilege to these roles.
    schemaName string
    The name of the schema containing the current or future tables on which to grant privileges.
    shares string[]
    Grants privilege to these shares (only valid if onfuture or onall are unset).
    tableName string
    The name of the table on which to grant privileges immediately (only valid if onfuture or onall are unset).
    withGrantOption boolean
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    database_name str
    The name of the database containing the current or future tables on which to grant privileges.
    enable_multiple_grants bool
    When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
    on_all bool
    When this is set to true and a schemaname is provided, apply this grant on all tables in the given schema. When this is true and no schemaname is provided apply this grant on all tables in the given database. The tablename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
    on_future bool
    When this is set to true and a schemaname is provided, apply this grant on all future tables in the given schema. When this is true and no schemaname is provided apply this grant on all future tables in the given database. The tablename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
    privilege str
    The privilege to grant on the current or future table. To grant all privileges, use the value ALL PRIVILEGES.
    revert_ownership_to_role_name str
    The name of the role to revert ownership to on destroy. Has no effect unless privilege is set to OWNERSHIP
    roles Sequence[str]
    Grants privilege to these roles.
    schema_name str
    The name of the schema containing the current or future tables on which to grant privileges.
    shares Sequence[str]
    Grants privilege to these shares (only valid if onfuture or onall are unset).
    table_name str
    The name of the table on which to grant privileges immediately (only valid if onfuture or onall are unset).
    with_grant_option bool
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    databaseName String
    The name of the database containing the current or future tables on which to grant privileges.
    enableMultipleGrants Boolean
    When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
    onAll Boolean
    When this is set to true and a schemaname is provided, apply this grant on all tables in the given schema. When this is true and no schemaname is provided apply this grant on all tables in the given database. The tablename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
    onFuture Boolean
    When this is set to true and a schemaname is provided, apply this grant on all future tables in the given schema. When this is true and no schemaname is provided apply this grant on all future tables in the given database. The tablename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
    privilege String
    The privilege to grant on the current or future table. To grant all privileges, use the value ALL PRIVILEGES.
    revertOwnershipToRoleName String
    The name of the role to revert ownership to on destroy. Has no effect unless privilege is set to OWNERSHIP
    roles List<String>
    Grants privilege to these roles.
    schemaName String
    The name of the schema containing the current or future tables on which to grant privileges.
    shares List<String>
    Grants privilege to these shares (only valid if onfuture or onall are unset).
    tableName String
    The name of the table on which to grant privileges immediately (only valid if onfuture or onall are unset).
    withGrantOption Boolean
    When this is set to true, allows the recipient role to grant the privileges to other roles.

    Outputs

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

    Get an existing TableGrant 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?: TableGrantState, opts?: CustomResourceOptions): TableGrant
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            database_name: Optional[str] = None,
            enable_multiple_grants: Optional[bool] = None,
            on_all: Optional[bool] = None,
            on_future: Optional[bool] = None,
            privilege: Optional[str] = None,
            revert_ownership_to_role_name: Optional[str] = None,
            roles: Optional[Sequence[str]] = None,
            schema_name: Optional[str] = None,
            shares: Optional[Sequence[str]] = None,
            table_name: Optional[str] = None,
            with_grant_option: Optional[bool] = None) -> TableGrant
    func GetTableGrant(ctx *Context, name string, id IDInput, state *TableGrantState, opts ...ResourceOption) (*TableGrant, error)
    public static TableGrant Get(string name, Input<string> id, TableGrantState? state, CustomResourceOptions? opts = null)
    public static TableGrant get(String name, Output<String> id, TableGrantState 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:
    DatabaseName string
    The name of the database containing the current or future tables on which to grant privileges.
    EnableMultipleGrants bool
    When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
    OnAll bool
    When this is set to true and a schemaname is provided, apply this grant on all tables in the given schema. When this is true and no schemaname is provided apply this grant on all tables in the given database. The tablename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
    OnFuture bool
    When this is set to true and a schemaname is provided, apply this grant on all future tables in the given schema. When this is true and no schemaname is provided apply this grant on all future tables in the given database. The tablename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
    Privilege string
    The privilege to grant on the current or future table. To grant all privileges, use the value ALL PRIVILEGES.
    RevertOwnershipToRoleName string
    The name of the role to revert ownership to on destroy. Has no effect unless privilege is set to OWNERSHIP
    Roles List<string>
    Grants privilege to these roles.
    SchemaName string
    The name of the schema containing the current or future tables on which to grant privileges.
    Shares List<string>
    Grants privilege to these shares (only valid if onfuture or onall are unset).
    TableName string
    The name of the table on which to grant privileges immediately (only valid if onfuture or onall are unset).
    WithGrantOption bool
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    DatabaseName string
    The name of the database containing the current or future tables on which to grant privileges.
    EnableMultipleGrants bool
    When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
    OnAll bool
    When this is set to true and a schemaname is provided, apply this grant on all tables in the given schema. When this is true and no schemaname is provided apply this grant on all tables in the given database. The tablename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
    OnFuture bool
    When this is set to true and a schemaname is provided, apply this grant on all future tables in the given schema. When this is true and no schemaname is provided apply this grant on all future tables in the given database. The tablename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
    Privilege string
    The privilege to grant on the current or future table. To grant all privileges, use the value ALL PRIVILEGES.
    RevertOwnershipToRoleName string
    The name of the role to revert ownership to on destroy. Has no effect unless privilege is set to OWNERSHIP
    Roles []string
    Grants privilege to these roles.
    SchemaName string
    The name of the schema containing the current or future tables on which to grant privileges.
    Shares []string
    Grants privilege to these shares (only valid if onfuture or onall are unset).
    TableName string
    The name of the table on which to grant privileges immediately (only valid if onfuture or onall are unset).
    WithGrantOption bool
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    databaseName String
    The name of the database containing the current or future tables on which to grant privileges.
    enableMultipleGrants Boolean
    When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
    onAll Boolean
    When this is set to true and a schemaname is provided, apply this grant on all tables in the given schema. When this is true and no schemaname is provided apply this grant on all tables in the given database. The tablename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
    onFuture Boolean
    When this is set to true and a schemaname is provided, apply this grant on all future tables in the given schema. When this is true and no schemaname is provided apply this grant on all future tables in the given database. The tablename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
    privilege String
    The privilege to grant on the current or future table. To grant all privileges, use the value ALL PRIVILEGES.
    revertOwnershipToRoleName String
    The name of the role to revert ownership to on destroy. Has no effect unless privilege is set to OWNERSHIP
    roles List<String>
    Grants privilege to these roles.
    schemaName String
    The name of the schema containing the current or future tables on which to grant privileges.
    shares List<String>
    Grants privilege to these shares (only valid if onfuture or onall are unset).
    tableName String
    The name of the table on which to grant privileges immediately (only valid if onfuture or onall are unset).
    withGrantOption Boolean
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    databaseName string
    The name of the database containing the current or future tables on which to grant privileges.
    enableMultipleGrants boolean
    When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
    onAll boolean
    When this is set to true and a schemaname is provided, apply this grant on all tables in the given schema. When this is true and no schemaname is provided apply this grant on all tables in the given database. The tablename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
    onFuture boolean
    When this is set to true and a schemaname is provided, apply this grant on all future tables in the given schema. When this is true and no schemaname is provided apply this grant on all future tables in the given database. The tablename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
    privilege string
    The privilege to grant on the current or future table. To grant all privileges, use the value ALL PRIVILEGES.
    revertOwnershipToRoleName string
    The name of the role to revert ownership to on destroy. Has no effect unless privilege is set to OWNERSHIP
    roles string[]
    Grants privilege to these roles.
    schemaName string
    The name of the schema containing the current or future tables on which to grant privileges.
    shares string[]
    Grants privilege to these shares (only valid if onfuture or onall are unset).
    tableName string
    The name of the table on which to grant privileges immediately (only valid if onfuture or onall are unset).
    withGrantOption boolean
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    database_name str
    The name of the database containing the current or future tables on which to grant privileges.
    enable_multiple_grants bool
    When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
    on_all bool
    When this is set to true and a schemaname is provided, apply this grant on all tables in the given schema. When this is true and no schemaname is provided apply this grant on all tables in the given database. The tablename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
    on_future bool
    When this is set to true and a schemaname is provided, apply this grant on all future tables in the given schema. When this is true and no schemaname is provided apply this grant on all future tables in the given database. The tablename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
    privilege str
    The privilege to grant on the current or future table. To grant all privileges, use the value ALL PRIVILEGES.
    revert_ownership_to_role_name str
    The name of the role to revert ownership to on destroy. Has no effect unless privilege is set to OWNERSHIP
    roles Sequence[str]
    Grants privilege to these roles.
    schema_name str
    The name of the schema containing the current or future tables on which to grant privileges.
    shares Sequence[str]
    Grants privilege to these shares (only valid if onfuture or onall are unset).
    table_name str
    The name of the table on which to grant privileges immediately (only valid if onfuture or onall are unset).
    with_grant_option bool
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    databaseName String
    The name of the database containing the current or future tables on which to grant privileges.
    enableMultipleGrants Boolean
    When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
    onAll Boolean
    When this is set to true and a schemaname is provided, apply this grant on all tables in the given schema. When this is true and no schemaname is provided apply this grant on all tables in the given database. The tablename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
    onFuture Boolean
    When this is set to true and a schemaname is provided, apply this grant on all future tables in the given schema. When this is true and no schemaname is provided apply this grant on all future tables in the given database. The tablename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
    privilege String
    The privilege to grant on the current or future table. To grant all privileges, use the value ALL PRIVILEGES.
    revertOwnershipToRoleName String
    The name of the role to revert ownership to on destroy. Has no effect unless privilege is set to OWNERSHIP
    roles List<String>
    Grants privilege to these roles.
    schemaName String
    The name of the schema containing the current or future tables on which to grant privileges.
    shares List<String>
    Grants privilege to these shares (only valid if onfuture or onall are unset).
    tableName String
    The name of the table on which to grant privileges immediately (only valid if onfuture or onall are unset).
    withGrantOption Boolean
    When this is set to true, allows the recipient role to grant the privileges to other roles.

    Import

    format is database_name|schema_name|table_name|privilege|with_grant_option|on_future|on_all|roles|shares

    $ pulumi import snowflake:index/tableGrant:TableGrant example "MY_DATABASE|MY_SCHEMA|MY_TABLE|USAGE|false|false|false|role1,role2|share1,share2"
    

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