pulumi-cli-up
Execute pulumi up
for a specific project and stack to deploy infrastructure updates. Define the working directory and stack name for targeted deployment.
Instructions
Run pulumi up for a given project and stack
Input Schema
Name | Required | Description | Default |
---|---|---|---|
stackName | No | The associated stack name. Defaults to 'dev'. | |
workDir | Yes | The working directory of the program. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"stackName": {
"description": "The associated stack name. Defaults to 'dev'.",
"type": "string"
},
"workDir": {
"description": "The working directory of the program.",
"type": "string"
}
},
"required": [
"workDir"
],
"type": "object"
}