terraform-provider-postgresql
terraform-provider-postgresql copied to clipboard
Support for `copy_data` for `postgresql_subscription`
Hi there,
I'm having a requirement to set copy_data to false when creating a SUBSCRIPTION.
In PG it could be done with simple SQL query:
CREATE SUBSCRIPTION SUBNAME CONNECTION 'dbname=DBNAME host=DB_HOST port=5432 user=USER password=PASSWORD' PUBLICATION PUBNAME WITH (copy_data = false);
Affected Resource(s)
postgresql_subscription