Metadata-Version: 2.1
Name: pulumi-postgresql-exec
Version: 0.1.0
Summary: A Pulumi package for executing arbitrary SQL queries against a PostgreSQL database.
Home-page: UNKNOWN
License: Apache-2.0
Project-URL: Repository, https://github.com/benesch/pulumi-postgresql-exec
Description: # PostgreSQL Exec Pulumi Provider
        
        A [Pulumi](https://pulumi.com) provider that allows running arbitrary SQL
        queries against a PostgreSQL database.
        
        **Warning:** It is your responsibility to ensure that you supply both the
        forward and reverse SQL statements.
        
        ## Usage example
        
        To provision a PostgreSQL table:
        
        ```python
        import pulumi_postgresql_exec as postgresql_exec
        
        postgresql_exec.Exec(
            "create-table",
            create_sql="CREATE TABLE t (a int)",
            destroy_sql="DROP TABLE t",
        )
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
