-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add `Additive: true` because otherwise the second step fails with: error: PULUMI_ACCESS_TOKEN must be set for login during non-interactive CLI sessions Seems to be related to a historic regression: pulumi/pulumi#12859
- Loading branch information
1 parent
c400939
commit cc1e50e
Showing
9 changed files
with
37 additions
and
454 deletions.
There are no files selected for viewing
3 changes: 0 additions & 3 deletions
3
examples/azure-native-sdk-v2/go-servicebus-recreate/step1/Pulumi.yaml
This file was deleted.
Oops, something went wrong.
79 changes: 0 additions & 79 deletions
79
examples/azure-native-sdk-v2/go-servicebus-recreate/step1/go.mod
This file was deleted.
Oops, something went wrong.
277 changes: 0 additions & 277 deletions
277
examples/azure-native-sdk-v2/go-servicebus-recreate/step1/go.sum
This file was deleted.
Oops, something went wrong.
40 changes: 0 additions & 40 deletions
40
examples/azure-native-sdk-v2/go-servicebus-recreate/step1/main.go
This file was deleted.
Oops, something went wrong.
40 changes: 0 additions & 40 deletions
40
examples/azure-native-sdk-v2/go-servicebus-recreate/step2/main.go
This file was deleted.
Oops, something went wrong.
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
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
16 changes: 16 additions & 0 deletions
16
provider/pkg/provider/test-programs/servicebus-recreate-1/Pulumi.yaml
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: servicebus-recreate | ||
runtime: yaml | ||
description: Check servicebus auto-recreates on duplicate detection change | ||
resources: | ||
resourceGroup: | ||
type: azure-native:resources:ResourceGroup | ||
namespace: | ||
type: azure-native:servicebus:Namespace | ||
properties: | ||
resourceGroupName: ${resourceGroup.name} | ||
topic: | ||
type: azure-native:servicebus:Topic | ||
properties: | ||
resourceGroupName: ${resourceGroup.name} | ||
namespaceName: ${namespace.name} | ||
requiresDuplicateDetection: false |
16 changes: 16 additions & 0 deletions
16
provider/pkg/provider/test-programs/servicebus-recreate-2/Pulumi.yaml
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: servicebus-recreate | ||
runtime: yaml | ||
description: Check servicebus auto-recreates on duplicate detection change | ||
resources: | ||
resourceGroup: | ||
type: azure-native:resources:ResourceGroup | ||
namespace: | ||
type: azure-native:servicebus:Namespace | ||
properties: | ||
resourceGroupName: ${resourceGroup.name} | ||
topic: | ||
type: azure-native:servicebus:Topic | ||
properties: | ||
resourceGroupName: ${resourceGroup.name} | ||
namespaceName: ${namespace.name} | ||
requiresDuplicateDetection: true # Changing this should trigger recreation otherwise will be rejected. |