mattthaber
mattthaber
also experiencing this, and saddened to see zero address of a bug after so many months
closing my own ticket as i found that i just needed to add the .yaml extension. ``` $ sceptre validate matthaber-dev/infrastructure.yaml Template matthaber-dev/infrastructure is valid. Template details: ``` this now...
i second this. Am currently looking to be able to do this functionality
saw this randomy on 1.7.1
This seems like a rather big issue to be occuring. i have a couple ideas on work arounds , but this is the type of logic id expect the plugin...
``` locals { grant_tables = [ "table", ] } resource "postgresql_grant" "foobar_grants" { for_each = toset(local.grant_tables) role = postgresql_role.foobar[0].name database = local.database schema = "public" object_type = "table" privileges =...
@cyrilgdn is there any reason why objects needs to `ForceNew` ? Looking at the source code, https://github.com/cyrilgdn/terraform-provider-postgresql/blob/master/postgresql/resource_postgresql_grant.go#L163 we already revoke and then grant but in the same transactions, so no...