is a list of resources for the Snowflake Terraform pro snowflake_account snowflake_account_grant snowflake_account_parameter snowflake_api_integration snowflake_database ...snowflake 関連のresource を列挙 What terraform resource does the following SQL correspond t Please only provide the corresponding resource. "create or replace schema admin;" Answer snowflake_schema KDDI Agile Development Center Corporation KDDIアジャイル開発センター 開発4部 9
Convert the following Snowflake {ddl} to Terraform HCL2. Here is the schema: {schema}. Also, here is an example of the HCL2: {example}. Answer Here is the Terraform HCL2 code to create or replace a Snow resource "snowflake_schema" "schema" { database = "database" name = "admin" comment = "A schema." is_transient = false is_managed = false data_retention_days = 1 tag { name = "department" value = "marketing_info" } } Please note that you need to replace `"database"` with the KDDI Agile Development Center Corporation KDDIアジャイル開発センター 開発4部 11