Skip to content

Instantly share code, notes, and snippets.

@onelharrison
Created January 16, 2022 20:26
Show Gist options
  • Save onelharrison/32919dd3c201c39d713a005fee05bb4e to your computer and use it in GitHub Desktop.
Save onelharrison/32919dd3c201c39d713a005fee05bb4e to your computer and use it in GitHub Desktop.
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.0"
}
snowflake = {
source = "chanzuckerberg/snowflake"
version = "~> 0.25"
}
}
}
provider "aws" {
region = "us-west-2"
}
provider "snowflake" {
alias = "account_admin"
role = "ACCOUNTADMIN"
}
provider "snowflake" {
alias = "sys_admin"
role = "SYSADMIN"
}
provider "snowflake" {
alias = "security_admin"
role = "SECURITYADMIN"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment