mirror of https://github.com/pulumi/pulumi.git
47 lines
934 B
JSON
47 lines
934 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/pulumi/pulumi/master/pkg/codegen/schema/pulumi.json",
|
|
"name": "splat",
|
|
"version": "1.0.0",
|
|
"types": {
|
|
"splat:index:SshKey": {
|
|
"properties": {
|
|
"name": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"type": "object",
|
|
"required": ["name"]
|
|
}
|
|
},
|
|
"functions": {
|
|
"splat:index:getSshKeys": {
|
|
"outputs": {
|
|
"properties": {
|
|
"sshKeys": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/types/splat:index:SshKey"
|
|
}
|
|
}
|
|
},
|
|
"type": "object",
|
|
"required": [
|
|
"sshKeys"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"resources": {
|
|
"splat:index:Server": {
|
|
"requiredInputs": ["sshKeys"],
|
|
"inputProperties": {
|
|
"sshKeys": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |