Terraforming an existing Snowflake account #425
Unanswered
alexrosenfeld10
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
-
What is the standard approach for terraforming an existing Snowflake account?
I have one in one region that I need to apply to another region and maintain parity between the two, so my approach right now is to terraform the whole thing and then apply it to both regions. However, I'm running into two general problems:
accountadmin
) for some objects) that I want to remedy in the second region... meaning, they won't be exactly the same.create or replace
option when it comes to users and roles and such.Right now my thoughts for solutions are:
terraform import snowflake_role.example roleName
as recommended for everything that might already exist. The problem here is that's a LOT of stuff, and I'm wondering if there's a more elegant solution. Edit: Some of this is discussed on here: https://medium.com/opendoor-labs/terraforming-snowflake-the-easy-way-a87c2750531bBeta Was this translation helpful? Give feedback.
All reactions