mirror of https://github.com/pulumi/pulumi.git
28 lines
455 B
JSON
28 lines
455 B
JSON
{
|
|
"version": "0.0.1",
|
|
"name": "example",
|
|
"types": {
|
|
"example::Dog": {
|
|
"type": "object",
|
|
"properties": {
|
|
"bone": {
|
|
"type": "string",
|
|
"replaceOnChanges": true
|
|
},
|
|
"dog": {
|
|
"$ref": "#/types/example::Dog"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"resources": {
|
|
"example::Pets": {
|
|
"properties": {
|
|
"dog": {
|
|
"$ref": "#/types/example::Dog"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|