Here's a guide on how to migrate deprecated resources to their new counter-parts.
The migration can be done in two ways. Either you can remove old grant resources and replace them with new ones or perform
more complicated migration, but without revoking any grant (no downtime migration). We'll focus on the second one as the first approach
is pretty straight forward. As an example we'll take snowflake_database_grant
to snowflake_grant_privileges_to_account_role
migration with one privilege granted to two roles:
resource "snowflake_database_grant" "old_resource" {
depends_on = [ snowflake_database.test, snowflake_role.a, snowflake_role.b ]
database_name = snowflake_database.test.name
privilege = "USAGE"
roles = [ snowflake_role.a.name, snowflake_role.b.name ]
}
First, we need to list all the grant resources that will need to be migrated.
We can do that by running the terraform state list
command.
Tip: for larger configurations, it's best to filter the results using the grep command. For example:
terraform state list | grep "snowflake_database_grant"
.
Now choose which one you would to migrate next and remove it from the state, so when you remove the old resource,
no grant will be revoked. More specifically, the Terraform Delete operation won't be run for removed resource.
It will detach the resource block in your configuration from the actual Snowflake resource.
You can remove resources from the state with the terraform state rm <resource_address>
command.
In our example, terraform state rm snowflake_database_grant.old_resource
. After running the command, you can remove the resource from the configuration
(again, removing the state will "detach" the resource block from the Snowflake resource. That's why after removing it, the Terraform won't try to revoke USAGE from our roles).
At this point, we have several options for creating new grant resources that will replace the old ones. We will cover three options:
- Configuration + Terraform CLI
- Configuration + import block
- Generating the configuration with import block and
terraform plan -generate-config-out
resource "snowflake_grant_privileges_to_account_role" "new_resource" {
depends_on = [snowflake_database.test, snowflake_role.a, snowflake_role.b]
for_each = toset([snowflake_role.a.name, snowflake_role.b.name])
privileges = ["USAGE"]
role_name = each.key
on_account_object {
object_type = "DATABASE"
object_name = snowflake_database.test.name
}
}
Write the terraform import
command with the ID so that the resource will be able to parse and fill the state correctly.
You can find import syntax in the documentation for a given resource, here
is the one for snowflake_grant_privileges_to_account_role
. In our case, the command will look like this:
terraform import 'snowflake_grant_privileges_to_account_role.new_resource["role_a_name"]' 'role_a_name|USAGE|false|false|OnAccountObject|DATABASE|database_name'
terraform import 'snowflake_grant_privileges_to_account_role.new_resource["role_b_name"]' 'role_b_name|USAGE|false|false|OnAccountObject|DATABASE|database_name'
Hashicorp documentation reference on import command
This is similar to the first approach, but here we don't have to worry about importing each for_each
entry one by one. In the locals
block, we're defining a map of resource name to ID. Then, we have
to write a new resource similar to the first approach. In the end, we have to define an import block
which will import defined IDs to a specified resource.
locals {
migrations = {
"${snowflake_role.a.name}" = "\"${snowflake_role.a.name}\"|false|false|USAGE|OnAccountObject|DATABASE|\"${snowflake_database.test.name}\""
"${snowflake_role.b.name}" = "\"${snowflake_role.b.name}\"|false|false|USAGE|OnAccountObject|DATABASE|\"${snowflake_database.test.name}\""
}
}
resource "snowflake_grant_privileges_to_account_role" "new_resource" {
depends_on = [snowflake_database.test, snowflake_role.a, snowflake_role.b]
for_each = local.migrations
privileges = ["USAGE"]
account_role_name = "\"${each.key}\""
on_account_object {
object_type = "DATABASE"
object_name = "\"${snowflake_database.test.name}\""
}
}
import {
to = snowflake_grant_privileges_to_account_role.new_resource[each.key]
id = each.value
for_each = local.migrations
}
Hashicorp documentation reference on import block
After running terraform plan
you'll see if resources can be imported without any change. If that's the case
and nothing has to be adjusted, then we can perform terraform apply
to import the state into our new grant resources.
Unfortunately, for_each
cannot be used when generating with import blocks, so we have to define them one by one.
For simplicity, we'll define just one import block (the second one would look the same, only with a different role).
import {
to = snowflake_grant_privileges_to_account_role.new_resource_role_a
id = "\"${snowflake_role.a.name}\"|false|false|USAGE|OnAccountObject|DATABASE|\"${snowflake_database.test.name}\""
}
Hashicorp documentation reference on import block
After specifying the import block run the terraform plan -generate-config-out=generated.tf
command,
which will scan your configuration files search for import blocks, and put the generated configurations inside the generated.tf
file.
# __generated__ by Terraform
# Please review these resources and move them into your main configuration files.
# __generated__ by Terraform
resource "snowflake_grant_privileges_to_account_role" "new_resource_role_a" {
account_role_name = "\"test_role_321123123\""
all_privileges = false
always_apply = false
always_apply_trigger = null
on_account = false
privileges = ["USAGE"]
with_grant_option = false
on_account_object {
object_name = "\"test_database_1231321\""
object_type = "DATABASE"
}
}
After running terraform plan
you'll see if there are any changes we have to do before applying our generated configuration.
If no errors are appearing you can run terraform apply
to import state into generated configurations.
Config generation may be a good solution for a few reasons, but it also comes with limitations:
- Manual review/fixing
- Half of the values could be removed because they're the same as the default values
- No
for_each
capabilities- You cannot specify
for_each
in the import block like in the second approach which promotes incremental migration - Generated configurations can't use
for_each
which results in much more configuration code
- You cannot specify
- No resource reference
- As you can see
account_role_name
andobject_name
are plain values, but the values most likely should be referenced by other resources' names.
- As you can see
Hashicorp documentation reference on limitations of generating configurations