Skip to content

Commit

Permalink
Set pulumiAttributionLabel to false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
guineveresaenger committed Aug 30, 2024
1 parent d6aa523 commit a1c5dad
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/examples_dotnet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ func getCSBaseOptions(t *testing.T) integration.ProgramTestOptions {
Dependencies: []string{
"Pulumi.Gcp",
},
Config: map[string]string{
"gcp:addPulumiAttributionLabel": "false",
},
})

return csharpBase
Expand Down
3 changes: 3 additions & 0 deletions examples/examples_go_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ func getGoBaseOptions(t *testing.T) integration.ProgramTestOptions {
Dependencies: []string{
"github.com/pulumi/pulumi-gcp/sdk/v8",
},
Config: map[string]string{
"gcp:addPulumiAttributionLabel": "false",
},
})

return goBase
Expand Down
3 changes: 3 additions & 0 deletions examples/examples_nodejs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ func getJSBaseOptions(t *testing.T) integration.ProgramTestOptions {
Dependencies: []string{
"@pulumi/gcp",
},
Config: map[string]string{
"gcp:addPulumiAttributionLabel": "false",
},
})

return baseJS
Expand Down
3 changes: 3 additions & 0 deletions examples/examples_py_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ func getPythonBaseOptions(t *testing.T) integration.ProgramTestOptions {
Dependencies: []string{
filepath.Join("..", "sdk", "python", "bin"),
},
Config: map[string]string{
"gcp:addPulumiAttributionLabel": "false",
},
})

return pythonBase
Expand Down

0 comments on commit a1c5dad

Please sign in to comment.