We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4e89dc commit 884aff1Copy full SHA for 884aff1
pkg/manifest/manifest.go
@@ -12,6 +12,7 @@ import (
12
"github.com/pluralsh/plural-cli/pkg/api"
13
"github.com/pluralsh/plural-cli/pkg/utils"
14
"github.com/pluralsh/plural-cli/pkg/utils/pathing"
15
+ "github.com/pluralsh/polly/algorithms"
16
)
17
18
const pluralDomain = "onplural.sh"
@@ -93,7 +94,7 @@ func (man *Manifest) Write(path string) error {
93
94
95
func (pm *ProjectManifest) Configure(cloud bool, cluster string) Writer {
96
pm.BucketPrefix = cluster
- pm.Bucket = fmt.Sprintf("plrl-cloud-%s", cluster)
97
+ pm.Bucket = fmt.Sprintf("plrl-cloud-%s-%s", cluster, algorithms.String(4))
98
99
if !cloud {
100
answer := ""
0 commit comments