Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Data/mySqlDatabases/mySqlDatabases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,13 @@ types:
description: "(Required) The administrator password for the MySQL database. Marked `x-radius-sensitive`: Radius encrypts it at rest, redacts it on reads, and exposes it decrypted only to the recipe as `{{context.resource.properties.password}}`."
database:
type: string
default: mysql_db
description: "(Optional) The name of the database. Defaults to `mysql_db` if not provided."
version:
type: string
enum: ['5.7', '8.0', '8.4']
description: "(Optional) The major MySQL server version in the X.Y format. Assumed to be 8.4 if not specified."
default: '8.4'
description: "(Optional) The major MySQL server version in the X.Y format. Defaults to `8.4` if not provided."
host:
type: string
description: The host name used to connect to the database. Mapped from the recipe module's output.
Expand Down
2 changes: 2 additions & 0 deletions Data/postgreSqlDatabases/postgreSqlDatabases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ types:
size:
type: string
enum: ['S', 'M', 'L']
default: 'S'
description: "(Optional) The size of the PostgreSQL database. Defaults to `S` if not provided."
username:
type: string
Expand All @@ -76,6 +77,7 @@ types:
description: "(Required) The administrator password for the PostgreSQL database. Marked `x-radius-sensitive`: Radius encrypts it at rest, redacts it on reads, and exposes it decrypted only to the recipe as `{{context.resource.properties.password}}`."
database:
type: string
default: postgres_db
description: "(Optional) The name of the database. Defaults to `postgres_db` if not provided."
initSql:
type: string
Expand Down
1 change: 1 addition & 0 deletions Data/redisCaches/redisCaches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ types:
size:
type: string
enum: ['S', 'M', 'L']
default: 'S'
description: "(Optional) The size of the Redis cache. Defaults to `S` if not provided. The recipe maps the size onto a concrete cloud SKU."
host:
type: string
Expand Down