Created
January 16, 2022 20:26
-
-
Save onelharrison/32919dd3c201c39d713a005fee05bb4e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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