Version: cicd.4.0 
Domains
Datasets are registered to a Domain, which can be categorized by business type, industry, purpose, or other relevant specifications.
Below is the sample resource definition file for Domain:
{
"rDomain":{
"Type": "Domain",
"Properties": {
"DomainName": "cicddomain",
"DisplayName": "cicddomain",
"DomainDescription": "Domain created with CICD"
}
}
}
Note: Deployment dependencies
Domain has dependencies on Tag.
Dependent resources should not be deleted before the primary resource; attempting to do so may lead to failures or inconsistencies during the deletion process.
Referencing this Resource
Below are the common keys that can be used in the DependsOn function to retrieve details of this resource.
Supported Key
| Key | Description |
|---|---|
| DomainName | Returns the DomainName value of this resource |
For additional supported keys, refer to the API definition document for the respective resource type.
Example
The following example shows how to retrieve the domain name from a domain template and use it in a dataset template:
{
"rCICDTestDS": {
"Type": "Dataset",
"Properties": {
"DatasetName": "cicdtest",
"Domain": {
"!DependsOn": "rDomain.DomainName"
}
}
}
}