Update cmd location to unblock ci-mgmt workflows
This commit is contained in:
24
provider/cmd/pulumi-resource-docker-build/main.go
Normal file
24
provider/cmd/pulumi-resource-docker-build/main.go
Normal file
@@ -0,0 +1,24 @@
|
||||
// Copyright 2016-2023, Pulumi Corporation.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
p "github.com/pulumi/pulumi-go-provider"
|
||||
|
||||
xyz "github.com/pulumi/pulumi-dockerbuild/provider"
|
||||
)
|
||||
|
||||
// Serve the provider against Pulumi's Provider protocol.
|
||||
func main() { _ = p.RunProvider(xyz.Name, xyz.Version, xyz.Provider()) }
|
||||
84
provider/cmd/pulumi-resource-docker-build/schema.json
Normal file
84
provider/cmd/pulumi-resource-docker-build/schema.json
Normal file
@@ -0,0 +1,84 @@
|
||||
{
|
||||
"name": "dockerbuild",
|
||||
"displayName": "docker",
|
||||
"version": "0.0.1-alpha.1710805517+1af3a9ed.dirty",
|
||||
"description": "Description",
|
||||
"keywords": [
|
||||
"keywords"
|
||||
],
|
||||
"homepage": "pulumi.com",
|
||||
"repository": "https://github.com/pulumi/pulumi-dockerbuild",
|
||||
"pluginDownloadURL": "github.com/pulumi/pulumi-dockerbuild",
|
||||
"publisher": "pulumi",
|
||||
"meta": {
|
||||
"moduleFormat": "(.*)"
|
||||
},
|
||||
"language": {
|
||||
"csharp": {
|
||||
"packageReferences": {
|
||||
"Pulumi": "3.*"
|
||||
}
|
||||
},
|
||||
"go": {
|
||||
"importBasePath": "github.com/pulumi/pulumi-dockerbuild/sdk/go/docker",
|
||||
"packageImportAliases": {
|
||||
"github.com/pulumi/pulumi-dockerbuild/sdk/go/docker": "docker"
|
||||
},
|
||||
"generateResourceContainerTypes": true,
|
||||
"generics": "generics-only"
|
||||
},
|
||||
"java": {
|
||||
"basePackage": "",
|
||||
"buildFiles": "gradle",
|
||||
"dependencies": {
|
||||
"com.google.code.findbugs:jsr305": "3.0.2",
|
||||
"com.google.code.gson:gson": "2.8.9",
|
||||
"com.pulumi:pulumi": "0.9.9"
|
||||
},
|
||||
"gradleNexusPublishPluginVersion": "1.1.0",
|
||||
"gradleTest": ""
|
||||
},
|
||||
"nodejs": {
|
||||
"dependencies": {
|
||||
"@pulumi/pulumi": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"python": {
|
||||
"requires": {
|
||||
"pulumi": "\u003e=3.0.0,\u003c4.0.0"
|
||||
},
|
||||
"pyproject": {
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"config": {},
|
||||
"provider": {
|
||||
"type": "object"
|
||||
},
|
||||
"resources": {
|
||||
"dockerbuild:index:Random": {
|
||||
"properties": {
|
||||
"length": {
|
||||
"type": "integer"
|
||||
},
|
||||
"result": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
"required": [
|
||||
"length",
|
||||
"result"
|
||||
],
|
||||
"inputProperties": {
|
||||
"length": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"requiredInputs": [
|
||||
"length"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user