Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2024 05:30 AM
variables:
catalog:
description: "Catalog name for the dataset"
default: "dev"
parameters:
catalog: ${var.catalog}
doesn't replace parameter values prod -> dev in json when it is being deployed
"datasets": [
{
"displayName": "my_table",
"name": "16b8c208",
"parameters": [
{
"dataType": "STRING",
"defaultSelection": {
"values": {
"dataType": "STRING",
"values": [
{
"value": "prod"
}
]
}
},
"displayName": "catalog",
"keyword": "catalog"
}
],
"query": "SELECT * FROM IDENTIFIER(:catalog||'.my_schema.my_table')"
},