Skip to content

Commit

Permalink
change default value
Browse files Browse the repository at this point in the history
  • Loading branch information
xuzhang3 committed May 9, 2024
1 parent fd9afde commit 58578c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ func resourceMachineLearningWorkspace() *pluginsdk.Resource {
"public_ip_enabled": {
Type: pluginsdk.TypeBool,
Optional: true,
Default: true,
Default: false,
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ func TestAccMachineLearningWorkspace_serverlessCompute(t *testing.T) {
check.That(data.ResourceName).ExistsInAzure(r),
check.That(data.ResourceName).Key("serverless_compute.#").HasValue("1"),
check.That(data.ResourceName).Key("serverless_compute.0.subnet_id").Exists(),
check.That(data.ResourceName).Key("serverless_compute.0.public_ip_enabled").HasValue("true"),
check.That(data.ResourceName).Key("serverless_compute.0.public_ip_enabled").HasValue("false"),
),
},
data.ImportStep(),
Expand Down

0 comments on commit 58578c3

Please sign in to comment.