You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GRANT USAGE ON SCHEMA public TO ${read_only_role};
GRANT SELECT ON ALL TABLES IN SCHEMA public TO ${read_only_role};
GRANT SELECT ON ALL SEQUENCES IN SCHEMA public TO ${read_only_role};
GRANT EXECUTE ON ALL FUNCTIONS IN SCHEMA public TO ${read_only_role};
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO ${read_only_role};
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON SEQUENCES TO ${read_only_role};
GRANT ${read_only_role} TO ${read_write_role};
GRANT UPDATE, DELETE, INSERT, REFERENCES, TRIGGER ON ALL TABLES IN SCHEMA public TO ${read_write_role};
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT UPDATE, DELETE, INSERT, REFERENCES, TRIGGER ON TABLES TO ${read_write_role};
Terraform should perform all local-exec provisioners.
Actual Behavior
module.rds1_roles.null_resource.db_setup: Creation complete after 1s (ID: 1803057760686190652)
module.rds2_roles.null_resource.db_setup: Still creating... (1m30s elapsed)
And doesnt finish at least after 20m
So The first null_resource seems like works normal, but second run of same module with different db stucks.
Steps to Reproduce
Additional Context
Locally same file works fine without errors.
The text was updated successfully, but these errors were encountered:
Terraform Version
Terraform Configuration Files
Template File permissions.sh.tpl:
Debug Output
Crash Output
No crash
Expected Behavior
Terraform should perform all local-exec provisioners.
Actual Behavior
module.rds1_roles.null_resource.db_setup: Creation complete after 1s (ID: 1803057760686190652)
module.rds2_roles.null_resource.db_setup: Still creating... (1m30s elapsed)
And doesnt finish at least after 20m
So The first null_resource seems like works normal, but second run of same module with different db stucks.
Steps to Reproduce
Additional Context
Locally same file works fine without errors.
The text was updated successfully, but these errors were encountered: