snowflake.TagGrant
Explore with Pulumi AI
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 example = new snowflake.TagGrant("example", {
databaseName: "database",
schemaName: "schema",
tagName: "tag",
roles: ["TEST_ROLE"],
privilege: "OWNERSHIP",
});
import pulumi
import pulumi_snowflake as snowflake
example = snowflake.TagGrant("example",
database_name="database",
schema_name="schema",
tag_name="tag",
roles=["TEST_ROLE"],
privilege="OWNERSHIP")
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.NewTagGrant(ctx, "example", &snowflake.TagGrantArgs{
DatabaseName: pulumi.String("database"),
SchemaName: pulumi.String("schema"),
TagName: pulumi.String("tag"),
Roles: pulumi.StringArray{
pulumi.String("TEST_ROLE"),
},
Privilege: pulumi.String("OWNERSHIP"),
})
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 example = new Snowflake.TagGrant("example", new()
{
DatabaseName = "database",
SchemaName = "schema",
TagName = "tag",
Roles = new[]
{
"TEST_ROLE",
},
Privilege = "OWNERSHIP",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.snowflake.TagGrant;
import com.pulumi.snowflake.TagGrantArgs;
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 example = new TagGrant("example", TagGrantArgs.builder()
.databaseName("database")
.schemaName("schema")
.tagName("tag")
.roles("TEST_ROLE")
.privilege("OWNERSHIP")
.build());
}
}
resources:
example:
type: snowflake:TagGrant
properties:
databaseName: database
schemaName: schema
tagName: tag
roles:
- TEST_ROLE
privilege: OWNERSHIP
Create TagGrant Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TagGrant(name: string, args: TagGrantArgs, opts?: CustomResourceOptions);
@overload
def TagGrant(resource_name: str,
args: TagGrantArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TagGrant(resource_name: str,
opts: Optional[ResourceOptions] = None,
database_name: Optional[str] = None,
schema_name: Optional[str] = None,
tag_name: Optional[str] = None,
enable_multiple_grants: Optional[bool] = None,
privilege: Optional[str] = None,
revert_ownership_to_role_name: Optional[str] = None,
roles: Optional[Sequence[str]] = None,
with_grant_option: Optional[bool] = None)
func NewTagGrant(ctx *Context, name string, args TagGrantArgs, opts ...ResourceOption) (*TagGrant, error)
public TagGrant(string name, TagGrantArgs args, CustomResourceOptions? opts = null)
public TagGrant(String name, TagGrantArgs args)
public TagGrant(String name, TagGrantArgs args, CustomResourceOptions options)
type: snowflake:TagGrant
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 TagGrantArgs
- 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 TagGrantArgs
- 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 TagGrantArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TagGrantArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TagGrantArgs
- 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 tagGrantResource = new Snowflake.TagGrant("tagGrantResource", new()
{
DatabaseName = "string",
SchemaName = "string",
TagName = "string",
EnableMultipleGrants = false,
Privilege = "string",
RevertOwnershipToRoleName = "string",
Roles = new[]
{
"string",
},
WithGrantOption = false,
});
example, err := snowflake.NewTagGrant(ctx, "tagGrantResource", &snowflake.TagGrantArgs{
DatabaseName: pulumi.String("string"),
SchemaName: pulumi.String("string"),
TagName: pulumi.String("string"),
EnableMultipleGrants: pulumi.Bool(false),
Privilege: pulumi.String("string"),
RevertOwnershipToRoleName: pulumi.String("string"),
Roles: pulumi.StringArray{
pulumi.String("string"),
},
WithGrantOption: pulumi.Bool(false),
})
var tagGrantResource = new TagGrant("tagGrantResource", TagGrantArgs.builder()
.databaseName("string")
.schemaName("string")
.tagName("string")
.enableMultipleGrants(false)
.privilege("string")
.revertOwnershipToRoleName("string")
.roles("string")
.withGrantOption(false)
.build());
tag_grant_resource = snowflake.TagGrant("tagGrantResource",
database_name="string",
schema_name="string",
tag_name="string",
enable_multiple_grants=False,
privilege="string",
revert_ownership_to_role_name="string",
roles=["string"],
with_grant_option=False)
const tagGrantResource = new snowflake.TagGrant("tagGrantResource", {
databaseName: "string",
schemaName: "string",
tagName: "string",
enableMultipleGrants: false,
privilege: "string",
revertOwnershipToRoleName: "string",
roles: ["string"],
withGrantOption: false,
});
type: snowflake:TagGrant
properties:
databaseName: string
enableMultipleGrants: false
privilege: string
revertOwnershipToRoleName: string
roles:
- string
schemaName: string
tagName: string
withGrantOption: false
TagGrant 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 TagGrant resource accepts the following input properties:
- Database
Name string - The name of the database containing the tag on which to grant privileges.
- Schema
Name string - The name of the schema containing the tag on which to grant privileges.
- Tag
Name string - The name of the tag on which to grant privileges.
- Enable
Multiple boolGrants - Privilege string
- The privilege to grant on the tag. To grant all privileges, use the value
ALL PRIVILEGES
. - Revert
Ownership stringTo Role Name - The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- Roles List<string>
- Grants privilege to these roles.
- With
Grant boolOption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- Database
Name string - The name of the database containing the tag on which to grant privileges.
- Schema
Name string - The name of the schema containing the tag on which to grant privileges.
- Tag
Name string - The name of the tag on which to grant privileges.
- Enable
Multiple boolGrants - Privilege string
- The privilege to grant on the tag. To grant all privileges, use the value
ALL PRIVILEGES
. - Revert
Ownership stringTo Role Name - The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- Roles []string
- Grants privilege to these roles.
- With
Grant boolOption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- database
Name String - The name of the database containing the tag on which to grant privileges.
- schema
Name String - The name of the schema containing the tag on which to grant privileges.
- tag
Name String - The name of the tag on which to grant privileges.
- enable
Multiple BooleanGrants - privilege String
- The privilege to grant on the tag. To grant all privileges, use the value
ALL PRIVILEGES
. - revert
Ownership StringTo Role Name - The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- roles List<String>
- Grants privilege to these roles.
- with
Grant BooleanOption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- database
Name string - The name of the database containing the tag on which to grant privileges.
- schema
Name string - The name of the schema containing the tag on which to grant privileges.
- tag
Name string - The name of the tag on which to grant privileges.
- enable
Multiple booleanGrants - privilege string
- The privilege to grant on the tag. To grant all privileges, use the value
ALL PRIVILEGES
. - revert
Ownership stringTo Role Name - The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- roles string[]
- Grants privilege to these roles.
- with
Grant booleanOption - 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 tag on which to grant privileges.
- schema_
name str - The name of the schema containing the tag on which to grant privileges.
- tag_
name str - The name of the tag on which to grant privileges.
- enable_
multiple_ boolgrants - privilege str
- The privilege to grant on the tag. To grant all privileges, use the value
ALL PRIVILEGES
. - revert_
ownership_ strto_ role_ name - The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- roles Sequence[str]
- Grants privilege to these roles.
- with_
grant_ booloption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- database
Name String - The name of the database containing the tag on which to grant privileges.
- schema
Name String - The name of the schema containing the tag on which to grant privileges.
- tag
Name String - The name of the tag on which to grant privileges.
- enable
Multiple BooleanGrants - privilege String
- The privilege to grant on the tag. To grant all privileges, use the value
ALL PRIVILEGES
. - revert
Ownership StringTo Role Name - The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- roles List<String>
- Grants privilege to these roles.
- with
Grant BooleanOption - 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 TagGrant 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 TagGrant Resource
Get an existing TagGrant 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?: TagGrantState, opts?: CustomResourceOptions): TagGrant
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
database_name: Optional[str] = None,
enable_multiple_grants: 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,
tag_name: Optional[str] = None,
with_grant_option: Optional[bool] = None) -> TagGrant
func GetTagGrant(ctx *Context, name string, id IDInput, state *TagGrantState, opts ...ResourceOption) (*TagGrant, error)
public static TagGrant Get(string name, Input<string> id, TagGrantState? state, CustomResourceOptions? opts = null)
public static TagGrant get(String name, Output<String> id, TagGrantState 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.
- Database
Name string - The name of the database containing the tag on which to grant privileges.
- Enable
Multiple boolGrants - Privilege string
- The privilege to grant on the tag. To grant all privileges, use the value
ALL PRIVILEGES
. - Revert
Ownership stringTo Role Name - The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- Roles List<string>
- Grants privilege to these roles.
- Schema
Name string - The name of the schema containing the tag on which to grant privileges.
- Tag
Name string - The name of the tag on which to grant privileges.
- With
Grant boolOption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- Database
Name string - The name of the database containing the tag on which to grant privileges.
- Enable
Multiple boolGrants - Privilege string
- The privilege to grant on the tag. To grant all privileges, use the value
ALL PRIVILEGES
. - Revert
Ownership stringTo Role Name - The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- Roles []string
- Grants privilege to these roles.
- Schema
Name string - The name of the schema containing the tag on which to grant privileges.
- Tag
Name string - The name of the tag on which to grant privileges.
- With
Grant boolOption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- database
Name String - The name of the database containing the tag on which to grant privileges.
- enable
Multiple BooleanGrants - privilege String
- The privilege to grant on the tag. To grant all privileges, use the value
ALL PRIVILEGES
. - revert
Ownership StringTo Role Name - The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- roles List<String>
- Grants privilege to these roles.
- schema
Name String - The name of the schema containing the tag on which to grant privileges.
- tag
Name String - The name of the tag on which to grant privileges.
- with
Grant BooleanOption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- database
Name string - The name of the database containing the tag on which to grant privileges.
- enable
Multiple booleanGrants - privilege string
- The privilege to grant on the tag. To grant all privileges, use the value
ALL PRIVILEGES
. - revert
Ownership stringTo Role Name - The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- roles string[]
- Grants privilege to these roles.
- schema
Name string - The name of the schema containing the tag on which to grant privileges.
- tag
Name string - The name of the tag on which to grant privileges.
- with
Grant booleanOption - 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 tag on which to grant privileges.
- enable_
multiple_ boolgrants - privilege str
- The privilege to grant on the tag. To grant all privileges, use the value
ALL PRIVILEGES
. - revert_
ownership_ strto_ role_ name - The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- roles Sequence[str]
- Grants privilege to these roles.
- schema_
name str - The name of the schema containing the tag on which to grant privileges.
- tag_
name str - The name of the tag on which to grant privileges.
- with_
grant_ booloption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- database
Name String - The name of the database containing the tag on which to grant privileges.
- enable
Multiple BooleanGrants - privilege String
- The privilege to grant on the tag. To grant all privileges, use the value
ALL PRIVILEGES
. - revert
Ownership StringTo Role Name - The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- roles List<String>
- Grants privilege to these roles.
- schema
Name String - The name of the schema containing the tag on which to grant privileges.
- tag
Name String - The name of the tag on which to grant privileges.
- with
Grant BooleanOption - When this is set to true, allows the recipient role to grant the privileges to other roles.
Import
format is database|schema|tag|privilege|with_grant_option|roles
$ pulumi import snowflake:index/tagGrant:TagGrant example "MY_DATABASE|MY_SCHEMA|MY_TAG|USAGE|false|role1,role2"
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.