Pulumi component that handles Pequod-related stack settings.
Add the following to your Pulumi.yaml file:
Note: If no version is specified, the latest version will be used.
packages:
stackmgmt: https://github.com/pulumi-pequod/component-stackmgmt[@vX.Y.Z]
from pulumi_pequod_stackmgmt import StackSettings, StackSettingsArgs
stackmgmt = StackSettings("my-stacksettings",
team_assignment=config.teamName,
drift_management=config.driftManagement)
import { StackSettings } from "@pulumi-pequod/stackmgmt";
const stackmgmt = new StackSettings(baseName, {driftManagement: config.get("driftManagement")})
using PulumiPequod.Stackmgmt;
var stackSettings = new StackSettings("stack-settings");
stacksettings:
type: stackmgmt:StackSettings
properties:
ttlMinutes: 600