Skip to content

Commit

Permalink
Merge branch 'main' of github.com:hashicorp/terraform-provider-azurer…
Browse files Browse the repository at this point in the history
…m into stackhci_network_interface
  • Loading branch information
teowa committed Nov 7, 2024
2 parents 6712bf8 + 5f1c65e commit a36ee66
Show file tree
Hide file tree
Showing 20 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ENHANCEMENTS:

* dependencies - update `go-azure-sdk` to `v0.20241104.1140654` [GH-27896]
* dependencies - update `go-azure-helpers` to `v0.71.0` [GH-27897]
* `azurerm_cognitive_deployment` - `sku.0.name` now supports `DataZoneStandard` [GH-27926]
* `azurerm_public_ip_prefix` - add support for the `sku_tier` property [GH-27882]
* `azurerm_oracle_cloud_vm_cluster` - add support for the `domain`, `scan_listener_port_tcp`, `scan_listener_port_tcp_ssl` and `zone_id` properties [GH-27808]
* `azurerm_public_ip` - support for the d`omain_name_label_scope` property [GH-27748]
Expand Down
2 changes: 1 addition & 1 deletion internal/services/batch/batch_job_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk"
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/validation"
"github.com/hashicorp/terraform-provider-azurerm/utils"
batchDataplane "github.com/tombuildsstuff/kermit/sdk/batch/2022-01.15.0/batch"
batchDataplane "github.com/jackofallops/kermit/sdk/batch/2022-01.15.0/batch"
)

type BatchJobResource struct{}
Expand Down
2 changes: 1 addition & 1 deletion internal/services/batch/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/hashicorp/go-azure-sdk/resource-manager/batch/2023-05-01/certificate"
"github.com/hashicorp/go-azure-sdk/resource-manager/batch/2023-05-01/pool"
"github.com/hashicorp/terraform-provider-azurerm/internal/common"
batchDataplane "github.com/tombuildsstuff/kermit/sdk/batch/2022-01.15.0/batch"
batchDataplane "github.com/jackofallops/kermit/sdk/batch/2022-01.15.0/batch"
)

type Client struct {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ func (r CognitiveDeploymentResource) Arguments() map[string]*pluginsdk.Schema {
ForceNew: true,
ValidateFunc: validation.StringInSlice([]string{
"Standard",
"DataZoneStandard",
"GlobalBatch",
"GlobalStandard",
"ProvisionedManaged",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1367,6 +1367,7 @@ github.com/hashicorp/yamux
## explicit; go 1.22
github.com/jackofallops/kermit/sdk/appconfiguration/1.0/appconfiguration
github.com/jackofallops/kermit/sdk/attestation/2022-08-01/attestation
github.com/jackofallops/kermit/sdk/batch/2022-01.15.0/batch
github.com/jackofallops/kermit/sdk/web/2022-09-01/web
github.com/jackofallops/kermit/version
# github.com/kr/pretty v0.3.0
Expand Down Expand Up @@ -1427,7 +1428,6 @@ github.com/tombuildsstuff/giovanni/storage/internal/metadata
# github.com/tombuildsstuff/kermit v0.20240122.1123108
## explicit; go 1.18
github.com/tombuildsstuff/kermit/sdk/appplatform/2023-05-01-preview/appplatform
github.com/tombuildsstuff/kermit/sdk/batch/2022-01.15.0/batch
github.com/tombuildsstuff/kermit/sdk/botservice/2021-05-01-preview/botservice
github.com/tombuildsstuff/kermit/sdk/datafactory/2018-06-01/datafactory
github.com/tombuildsstuff/kermit/sdk/iotcentral/2022-10-31-preview/iotcentral
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/cognitive_deployment.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ A `model` block supports the following:

A `sku` block supports the following:

* `name` - (Required) The name of the SKU. Possible values include `Standard`, `GlobalBatch`, `GlobalStandard` and `ProvisionedManaged`.
* `name` - (Required) The name of the SKU. Possible values include `Standard`, `DataZoneStandard`, `GlobalBatch`, `GlobalStandard` and `ProvisionedManaged`.

* `tier` - (Optional) Possible values are `Free`, `Basic`, `Standard`, `Premium`, `Enterprise`. Changing this forces a new resource to be created.

Expand Down

0 comments on commit a36ee66

Please sign in to comment.