-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
580a929
commit cfd629c
Showing
1 changed file
with
180 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2829,6 +2829,186 @@ | |
"description": "A minimal OpenStack Pulumi YAML program" | ||
} | ||
}, | ||
"ovh-csharp": { | ||
"name": "ovh-csharp", | ||
"runtime": "dotnet", | ||
"template": { | ||
"description": "A minimal OVHcloud C# Pulumi program", | ||
"config": { | ||
"ovhServiceName": { | ||
"description": "The OVHcloud Public Cloud Project to deploy into" | ||
}, | ||
"ovhRegion": { | ||
"default": "GRA", | ||
"description": "The OVHcloud region to deploy into" | ||
}, | ||
"planName": { | ||
"default": "SMALL", | ||
"description": "Name of the plan" | ||
}, | ||
"registryName": { | ||
"default": "my-registry", | ||
"description": "Name of the private registry" | ||
}, | ||
"registryUserName": { | ||
"default": "user", | ||
"description": "Name of the user" | ||
}, | ||
"registryUserEmail": { | ||
"default": "[email protected]", | ||
"description": "Email of the user" | ||
}, | ||
"registryUserLogin": { | ||
"default": "myuser", | ||
"description": "Login of the user" | ||
} | ||
} | ||
} | ||
}, | ||
"ovh-go": { | ||
"name": "ovh-go", | ||
"runtime": "go", | ||
"template": { | ||
"description": "A minimal OVHcloud Go Pulumi program", | ||
"config": { | ||
"ovhServiceName": { | ||
"description": "The OVHcloud Public Cloud Project to deploy into" | ||
}, | ||
"ovhRegion": { | ||
"default": "GRA", | ||
"description": "The OVHcloud region to deploy into" | ||
}, | ||
"planName": { | ||
"default": "SMALL", | ||
"description": "Name of the plan" | ||
}, | ||
"registryName": { | ||
"default": "my-registry", | ||
"description": "Name of the private registry" | ||
}, | ||
"registryUserName": { | ||
"default": "user", | ||
"description": "Name of the user" | ||
}, | ||
"registryUserEmail": { | ||
"default": "[email protected]", | ||
"description": "Email of the user" | ||
}, | ||
"registryUserLogin": { | ||
"default": "myuser", | ||
"description": "Login of the user" | ||
} | ||
} | ||
} | ||
}, | ||
"ovh-java": { | ||
"name": "ovh-java", | ||
"runtime": "java", | ||
"template": { | ||
"description": "A minimal OVHcloud Java Pulumi program", | ||
"config": { | ||
"ovhServiceName": { | ||
"description": "The OVHcloud Public Cloud Project to deploy into" | ||
}, | ||
"ovhRegion": { | ||
"default": "GRA", | ||
"description": "The OVHcloud region to deploy into" | ||
}, | ||
"planName": { | ||
"default": "SMALL", | ||
"description": "Name of the plan" | ||
}, | ||
"registryName": { | ||
"default": "my-registry", | ||
"description": "Name of the private registry" | ||
}, | ||
"registryUserName": { | ||
"default": "user", | ||
"description": "Name of the user" | ||
}, | ||
"registryUserEmail": { | ||
"default": "[email protected]", | ||
"description": "Email of the user" | ||
}, | ||
"registryUserLogin": { | ||
"default": "myuser", | ||
"description": "Login of the user" | ||
} | ||
} | ||
} | ||
}, | ||
"ovh-python": { | ||
"name": "ovh-python", | ||
"runtime": "python", | ||
"template": { | ||
"description": "A minimal OVHcloud Python Pulumi program", | ||
"config": { | ||
"ovhServiceName": { | ||
"description": "The OVHcloud Public Cloud Project to deploy into" | ||
}, | ||
"ovhRegion": { | ||
"default": "GRA", | ||
"description": "The OVHcloud region to deploy into" | ||
}, | ||
"planName": { | ||
"default": "SMALL", | ||
"description": "Name of the plan" | ||
}, | ||
"registryName": { | ||
"default": "my-registry", | ||
"description": "Name of the private registry" | ||
}, | ||
"registryUserName": { | ||
"default": "user", | ||
"description": "Name of the user" | ||
}, | ||
"registryUserEmail": { | ||
"default": "[email protected]", | ||
"description": "Email of the user" | ||
}, | ||
"registryUserLogin": { | ||
"default": "myuser", | ||
"description": "Login of the user" | ||
} | ||
} | ||
} | ||
}, | ||
"ovh-typescript": { | ||
"name": "ovh-typescript", | ||
"runtime": "nodejs", | ||
"template": { | ||
"description": "A minimal OVHcloud TypeScript Pulumi program", | ||
"config": { | ||
"ovhServiceName": { | ||
"description": "The OVHcloud Public Cloud Project to deploy into" | ||
}, | ||
"ovhRegion": { | ||
"default": "GRA", | ||
"description": "The OVHcloud region to deploy into" | ||
}, | ||
"planName": { | ||
"default": "SMALL", | ||
"description": "Name of the plan" | ||
}, | ||
"registryName": { | ||
"default": "my-registry", | ||
"description": "Name of the private registry" | ||
}, | ||
"registryUserName": { | ||
"default": "user", | ||
"description": "Name of the user" | ||
}, | ||
"registryUserEmail": { | ||
"default": "[email protected]", | ||
"description": "Email of the user" | ||
}, | ||
"registryUserLogin": { | ||
"default": "myuser", | ||
"description": "Login of the user" | ||
} | ||
} | ||
} | ||
}, | ||
"pinecone-csharp": { | ||
"name": "pinecone-csharp", | ||
"runtime": "dotnet", | ||
|