Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
use SLASH_22 for eval
Browse files Browse the repository at this point in the history
  • Loading branch information
srinandan committed Jul 8, 2021
1 parent e546ae6 commit ef937e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/instances/crtinstance.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ var CreateCmd = &cobra.Command{
}

if billingType == "EVALUATION" {
_, err = instances.Create(name, location, "", "SLASH_23")
_, err = instances.Create(name, location, "", "SLASH_22")
} else {
_, err = instances.Create(name, location, diskEncryptionKeyName, cidrRange)
}
Expand All @@ -71,7 +71,7 @@ func init() {
CreateCmd.Flags().StringVarP(&diskEncryptionKeyName, "diskenc", "d",
"", "CloudKMS key name")
CreateCmd.Flags().StringVarP(&cidrRange, "cidr", "r",
"", "Peering CIDR Range; default is SLASH_16, other supported values SLASH_20, SLASH_23 for eval")
"", "Peering CIDR Range; default is SLASH_16, other supported values SLASH_20, SLASH_22 for eval")

_ = CreateCmd.MarkFlagRequired("name")
_ = CreateCmd.MarkFlagRequired("location")
Expand Down

0 comments on commit ef937e0

Please sign in to comment.