Hello, I'm running into an error when trying to pu...
# general
b
Hello, I'm running into an error when trying to pulumi up a stack for our Snowflake instance. Any pointers on how I can resolve this issue? Details
Copy code
Type                                   Name                                    Plan        Info
     pulumi:pulumi:Stack                    snowflake-prod
 ~   ├─ snowflake:index:Database            business_impact                         update      [diff: ~dataRetentionTimeInDays]
 ~   ├─ snowflake:index:Schema              test_schema                             refresh     2 errors

snowflake:index:Schema (test_schema):
    error:   sdk-v2/provider2.go:486: sdk.helper_schema: unexpected number of parts 1 in identifier BUSINESS_IMPACT|TEST, expected 2 in a form of "<database_name>.<database_object_name>": provider=snowflake@0.59.0
    error: diffing urn:pulumi:prod::snowflake::snowflake:index/schema:Schema::test_schema: 1 error occurred:
    	* unexpected number of parts 1 in identifier BUSINESS_IMPACT|TEST, expected 2 in a form of "<database_name>.<database_object_name>"
I deleted the state of this resource in the stack and re-imported it via this command
Copy code
pulumi import snowflake:index/schema:Schema test_schema "BUSINESS_IMPACT|TEST" --protect=false
I needed to use
|
, while the error is indicating I need to use
.
I also have a snowflake table and procedure that are dependent on the schema resource.