Stage and pipe on Azure? #459
Unanswered
lmarquez-qontigo
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
In terms of stages and pipes, is there general support for Azure resources at the moment i.e blob containers and event grid topics?
`resource "snowflake_stage" "example_stage" {
name = "EXAMPLE_STAGE"
url = "s3://com.example.bucket/prefix"
database = "EXAMPLE_DB"
schema = "EXAMPLE_SCHEMA"
credentials = "AWS_KEY_ID='${var.example_aws_key_id}' AWS_SECRET_KEY='${var.example_aws_secret_key}'"
}
resource "snowflake_stage_grant" "grant_example_stage" {
database_name = snowflake_stage.example_stage.database
schema_name = snowflake_stage.example_stage.schema
roles = ["LOADER"]
privilege = "OWNERSHIP"
stage_name = snowflake_stage.example_stage.name
}`
Beta Was this translation helpful? Give feedback.
All reactions