Skip to content

Commit

Permalink
ttl schedule delete
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchellGerdisch committed Dec 3, 2024
1 parent 1016fff commit 7765c46
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := 3.3.0
VERSION := 3.3.1

PACK := stackmgmt
ORG := pulumi-pequod
Expand Down
2 changes: 1 addition & 1 deletion provider/cmd/pulumi-resource-stackmgmt/stackSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export class StackSettings extends pulumi.ComponentResource {
stack: stack,
timestamp: expirationTime,
deleteAfterDestroy: false,
}, {parent: this, ignoreChanges: ["timestamp"]})
}, {parent: this, ignoreChanges: ["timestamp"], retainOnDelete: true}) // retain on delete to work around https://github.com/pulumi/pulumi-pulumiservice/issues/451

//// Drift Schedule ////
let remediation = true // assume we want to remediate
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/bin/pequod_stackmgmt.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: pequod-stackmgmt
Version: 3.3.0
Version: 3.3.1
Requires-Python: >=3.7
Description-Content-Type: text/markdown

Expand Down
2 changes: 1 addition & 1 deletion sdk/python/bin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from subprocess import check_call


VERSION = "3.3.0"
VERSION = "3.3.1"
def readme():
try:
with open('README.md', encoding='utf-8') as f:
Expand Down

0 comments on commit 7765c46

Please sign in to comment.