Skip to content

Commit

Permalink
[minor_change] Define "mso" as platform default in provider.go and al…
Browse files Browse the repository at this point in the history
…low MSO_PLATFORM to be used as environment variable
  • Loading branch information
lhercot authored and akinross committed Oct 17, 2024
1 parent 1d3332f commit 5f1db4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mso/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func Provider() terraform.ResourceProvider {
"platform": &schema.Schema{
Type: schema.TypeString,
Optional: true,
DefaultFunc: schema.EnvDefaultFunc("MSO_PLATFORM", nil),
DefaultFunc: schema.EnvDefaultFunc("MSO_PLATFORM", "mso"),
Description: "Parameter that specifies where MSO is installed", // defaults to "mso"
ValidateFunc: validation.StringInSlice([]string{
"mso",
Expand Down

0 comments on commit 5f1db4e

Please sign in to comment.