Skip to content

Commit c2d5d12

Browse files
committed
change v2 to 2.0.0
1 parent 53fddb2 commit c2d5d12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

internal/cli/clu2adv/clu2adv.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ func Builder() *cobra.Command {
1010
o := &opts{fs: afero.NewOsFs()}
1111
cmd := &cobra.Command{
1212
Use: "clusterToAdvancedCluster",
13-
Short: "Convert cluster to advanced_cluster v2",
14-
Long: "Convert a Terraform configuration from mongodbatlas_cluster to mongodbatlas_advanced_cluster schema v2",
13+
Short: "Convert cluster to advanced_cluster preview provider 2.0.0",
14+
Long: "Convert a Terraform configuration from mongodbatlas_cluster to mongodbatlas_advanced_cluster preview provider 2.0.0",
1515
Aliases: []string{"clu2adv"},
1616
RunE: func(_ *cobra.Command, _ []string) error {
1717
if err := o.PreRun(); err != nil {

internal/convert/convert.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ type attrVals struct {
4646
}
4747

4848
// ClusterToAdvancedCluster transforms all mongodbatlas_cluster definitions in a
49-
// Terraform configuration file into mongodbatlas_advanced_cluster schema v2 definitions.
49+
// Terraform configuration file into mongodbatlas_advanced_cluster schema 2.0.0.
5050
// All other resources and data sources are left untouched.
5151
// Note: hclwrite.Tokens are used instead of cty.Value so expressions with interpolations like var.region can be preserved.
5252
// cty.Value only supports literal expressions.

0 commit comments

Comments
 (0)