├── .github ├── ISSUE_TEMPLATE.md ├── SUPPORT.md └── workflows │ ├── golangci.yml │ ├── release.yml │ ├── remove-waiting-response.yml │ └── test.yml ├── .gitignore ├── .go-version ├── .golangci.yml ├── .goreleaser.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── examples ├── issues │ ├── 48 │ │ ├── test.tf │ │ └── test │ │ │ ├── test.tf │ │ │ └── versions.tf │ ├── 75 │ │ └── test.tf │ └── 169 │ │ ├── dev.tfrc │ │ └── test.tf └── rds │ ├── postgresql │ ├── README.md │ ├── instance.tf │ └── variables.tf │ ├── test.tf │ └── vpc │ └── vpc.tf ├── go.mod ├── go.sum ├── main.go ├── postgresql ├── GNUmakefile ├── config.go ├── config_test.go ├── data_source_helpers.go ├── data_source_postgresql_schemas.go ├── data_source_postgresql_schemas_test.go ├── data_source_postgresql_sequences.go ├── data_source_postgresql_sequences_test.go ├── data_source_postgresql_tables.go ├── data_source_postgresql_tables_test.go ├── helpers.go ├── helpers_test.go ├── model_pg_function.go ├── model_pg_function_test.go ├── provider.go ├── provider_test.go ├── proxy_driver.go ├── resource_postgresql_database.go ├── resource_postgresql_database_test.go ├── resource_postgresql_default_privileges.go ├── resource_postgresql_default_privileges_test.go ├── resource_postgresql_extension.go ├── resource_postgresql_extension_test.go ├── resource_postgresql_function.go ├── resource_postgresql_function_test.go ├── resource_postgresql_grant.go ├── resource_postgresql_grant_role.go ├── resource_postgresql_grant_role_test.go ├── resource_postgresql_grant_test.go ├── resource_postgresql_physical_replication_slot.go ├── resource_postgresql_publication.go ├── resource_postgresql_publication_test.go ├── resource_postgresql_replication_slot.go ├── resource_postgresql_replication_slot_test.go ├── resource_postgresql_role.go ├── resource_postgresql_role_test.go ├── resource_postgresql_schema.go ├── resource_postgresql_schema_test.go ├── resource_postgresql_security_label.go ├── resource_postgresql_security_label_test.go ├── resource_postgresql_server.go ├── resource_postgresql_server_test.go ├── resource_postgresql_subscription.go ├── resource_postgresql_subscription_test.go ├── resource_postgresql_user_mapping.go ├── resource_postgresql_user_mapping_test.go └── utils_test.go ├── scripts ├── changelog-links.sh ├── gofmtcheck.sh └── gogetcookie.sh ├── tests ├── build │ ├── Dockerfile │ └── dummy_seclabel │ │ ├── Makefile │ │ ├── dummy_seclabel--1.0.sql │ │ ├── dummy_seclabel.c │ │ └── dummy_seclabel.control ├── docker-compose.yml ├── switch_rds.sh ├── switch_superuser.sh ├── testacc_cleanup.sh ├── testacc_full.sh └── testacc_setup.sh └── website ├── docs ├── d │ ├── postgresql_schemas.html.markdown │ ├── postgresql_sequences.html.markdown │ └── postgresql_tables.html.markdown ├── index.html.markdown └── r │ ├── postgresql_database.html.markdown │ ├── postgresql_default_privileges.html.markdown │ ├── postgresql_extension.html.markdown │ ├── postgresql_function.html.markdown │ ├── postgresql_grant.html.markdown │ ├── postgresql_grant_role.html.markdown │ ├── postgresql_physical_replication_slot.markdown │ ├── postgresql_publication.markdown │ ├── postgresql_replication_slot.markdown │ ├── postgresql_role.html.markdown │ ├── postgresql_schema.html.markdown │ ├── postgresql_security_label.html.markdown │ ├── postgresql_server.html.markdown │ ├── postgresql_subscription.markdown │ └── postgresql_user_mapping.html.markdown └── postgresql.erb /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/.github/workflows/golangci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/remove-waiting-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/.github/workflows/remove-waiting-response.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/.gitignore -------------------------------------------------------------------------------- /.go-version: -------------------------------------------------------------------------------- 1 | 1.14.4 2 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/README.md -------------------------------------------------------------------------------- /examples/issues/169/dev.tfrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/examples/issues/169/dev.tfrc -------------------------------------------------------------------------------- /examples/issues/169/test.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/examples/issues/169/test.tf -------------------------------------------------------------------------------- /examples/issues/48/test.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/examples/issues/48/test.tf -------------------------------------------------------------------------------- /examples/issues/48/test/test.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/examples/issues/48/test/test.tf -------------------------------------------------------------------------------- /examples/issues/48/test/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/examples/issues/48/test/versions.tf -------------------------------------------------------------------------------- /examples/issues/75/test.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/examples/issues/75/test.tf -------------------------------------------------------------------------------- /examples/rds/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/examples/rds/postgresql/README.md -------------------------------------------------------------------------------- /examples/rds/postgresql/instance.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/examples/rds/postgresql/instance.tf -------------------------------------------------------------------------------- /examples/rds/postgresql/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/examples/rds/postgresql/variables.tf -------------------------------------------------------------------------------- /examples/rds/test.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/examples/rds/test.tf -------------------------------------------------------------------------------- /examples/rds/vpc/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/examples/rds/vpc/vpc.tf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/main.go -------------------------------------------------------------------------------- /postgresql/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/GNUmakefile -------------------------------------------------------------------------------- /postgresql/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/config.go -------------------------------------------------------------------------------- /postgresql/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/config_test.go -------------------------------------------------------------------------------- /postgresql/data_source_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/data_source_helpers.go -------------------------------------------------------------------------------- /postgresql/data_source_postgresql_schemas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/data_source_postgresql_schemas.go -------------------------------------------------------------------------------- /postgresql/data_source_postgresql_schemas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/data_source_postgresql_schemas_test.go -------------------------------------------------------------------------------- /postgresql/data_source_postgresql_sequences.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/data_source_postgresql_sequences.go -------------------------------------------------------------------------------- /postgresql/data_source_postgresql_sequences_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/data_source_postgresql_sequences_test.go -------------------------------------------------------------------------------- /postgresql/data_source_postgresql_tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/data_source_postgresql_tables.go -------------------------------------------------------------------------------- /postgresql/data_source_postgresql_tables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/data_source_postgresql_tables_test.go -------------------------------------------------------------------------------- /postgresql/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/helpers.go -------------------------------------------------------------------------------- /postgresql/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/helpers_test.go -------------------------------------------------------------------------------- /postgresql/model_pg_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/model_pg_function.go -------------------------------------------------------------------------------- /postgresql/model_pg_function_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/model_pg_function_test.go -------------------------------------------------------------------------------- /postgresql/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/provider.go -------------------------------------------------------------------------------- /postgresql/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/provider_test.go -------------------------------------------------------------------------------- /postgresql/proxy_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/proxy_driver.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_database.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_database_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_database_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_default_privileges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_default_privileges.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_default_privileges_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_default_privileges_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_extension.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_extension_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_extension_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_function.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_function_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_function_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_grant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_grant.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_grant_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_grant_role.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_grant_role_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_grant_role_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_grant_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_grant_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_physical_replication_slot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_physical_replication_slot.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_publication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_publication.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_publication_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_publication_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_replication_slot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_replication_slot.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_replication_slot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_replication_slot_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_role.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_role_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_role_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_schema.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_schema_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_security_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_security_label.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_security_label_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_security_label_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_server.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_server_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_subscription.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_subscription_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_subscription_test.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_user_mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_user_mapping.go -------------------------------------------------------------------------------- /postgresql/resource_postgresql_user_mapping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/resource_postgresql_user_mapping_test.go -------------------------------------------------------------------------------- /postgresql/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/postgresql/utils_test.go -------------------------------------------------------------------------------- /scripts/changelog-links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/scripts/changelog-links.sh -------------------------------------------------------------------------------- /scripts/gofmtcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/scripts/gofmtcheck.sh -------------------------------------------------------------------------------- /scripts/gogetcookie.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/scripts/gogetcookie.sh -------------------------------------------------------------------------------- /tests/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/tests/build/Dockerfile -------------------------------------------------------------------------------- /tests/build/dummy_seclabel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/tests/build/dummy_seclabel/Makefile -------------------------------------------------------------------------------- /tests/build/dummy_seclabel/dummy_seclabel--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/tests/build/dummy_seclabel/dummy_seclabel--1.0.sql -------------------------------------------------------------------------------- /tests/build/dummy_seclabel/dummy_seclabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/tests/build/dummy_seclabel/dummy_seclabel.c -------------------------------------------------------------------------------- /tests/build/dummy_seclabel/dummy_seclabel.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/tests/build/dummy_seclabel/dummy_seclabel.control -------------------------------------------------------------------------------- /tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/tests/docker-compose.yml -------------------------------------------------------------------------------- /tests/switch_rds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/tests/switch_rds.sh -------------------------------------------------------------------------------- /tests/switch_superuser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/tests/switch_superuser.sh -------------------------------------------------------------------------------- /tests/testacc_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/tests/testacc_cleanup.sh -------------------------------------------------------------------------------- /tests/testacc_full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/tests/testacc_full.sh -------------------------------------------------------------------------------- /tests/testacc_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/tests/testacc_setup.sh -------------------------------------------------------------------------------- /website/docs/d/postgresql_schemas.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/d/postgresql_schemas.html.markdown -------------------------------------------------------------------------------- /website/docs/d/postgresql_sequences.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/d/postgresql_sequences.html.markdown -------------------------------------------------------------------------------- /website/docs/d/postgresql_tables.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/d/postgresql_tables.html.markdown -------------------------------------------------------------------------------- /website/docs/index.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/index.html.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_database.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_database.html.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_default_privileges.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_default_privileges.html.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_extension.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_extension.html.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_function.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_function.html.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_grant.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_grant.html.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_grant_role.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_grant_role.html.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_physical_replication_slot.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_physical_replication_slot.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_publication.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_publication.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_replication_slot.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_replication_slot.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_role.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_role.html.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_schema.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_schema.html.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_security_label.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_security_label.html.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_server.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_server.html.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_subscription.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_subscription.markdown -------------------------------------------------------------------------------- /website/docs/r/postgresql_user_mapping.html.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/docs/r/postgresql_user_mapping.html.markdown -------------------------------------------------------------------------------- /website/postgresql.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrilgdn/terraform-provider-postgresql/HEAD/website/postgresql.erb --------------------------------------------------------------------------------