postgres
Schema PostgreSQL
PostgreSQL describes the attributes to locally deploy or create a cloud provider
managed postgresql database instance for the workload.
Attributes
Name and Description | Type | Default Value | Required |
---|---|---|---|
type Type defines whether the postgresql database is deployed locally or provided by cloud vendor. | "local" | "cloud" | Undefined | required |
version Version defines the mysql version to use. | str | Undefined | required |
Examples
Instantiate a local postgresql database with image version of 14.0.
import catalog.models.schema.v1.accessories.postgres
postgres: postgres.PostgreSQL {
type: "local"
version: "14.0"
}