github.com/defang-io/defang/src@v0.0.0-20240505002154-bdf411911834/pkg/cli/client/byoc/clouds/common.go (about)

     1  package clouds
     2  
     3  import (
     4  	"github.com/defang-io/defang/src/pkg"
     5  )
     6  
     7  const (
     8  	CdTaskPrefix = "defang-cd" // WARNING: renaming this practically deletes the Pulumi state
     9  	DefangPrefix = "Defang"    // prefix for all resources created by Defang
    10  )
    11  
    12  var (
    13  	// Changing this will cause issues if two clients with different versions are using the same account
    14  	CdImage = pkg.Getenv("DEFANG_CD_IMAGE", "public.ecr.aws/defang-io/cd:public-beta")
    15  )