Skip to content

Commit

Permalink
Merge branch 'master' into external_mtastore
Browse files Browse the repository at this point in the history
  • Loading branch information
kosinsky committed Jul 6, 2020
2 parents 87e5c45 + 3969b68 commit 3b78303
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -14,6 +14,7 @@ ENHANCEMENTS:
* `azurerm_eventhub_namespace` - support for setting `retention_count` to `90` when using a Dedicated Cluster [GH-7548]
* `azurerm_kusto_cluster` - support for the `language_extensions` [GH-7421]
* `azurerm_mssql_database` - the `sku_name` property now only forces a new resource for the `HS` (HyperScale) family [GH-7559]
* `azurerm_web_application_firewall_policy` - allow setting `version` to `0.1` (for when `type` is set to `Microsoft_BotManagerRuleSet`) [GH-7579]

BUG FIXES:

Expand Down
Expand Up @@ -28,6 +28,7 @@ var ValidateWebApplicationFirewallPolicyRuleGroupName = validation.StringInSlice
}, false)

var ValidateWebApplicationFirewallPolicyRuleSetVersion = validation.StringInSlice([]string{
"0.1",
"1.0",
"2.2.9",
"3.0",
Expand Down
2 changes: 2 additions & 0 deletions website/docs/r/container_registry.html.markdown
Expand Up @@ -68,6 +68,8 @@ The following arguments are supported:

~> **NOTE:** `network_rule_set ` is only supported with the `Premium` SKU at this time.

~> **NOTE:** Azure automatically configures Network Rules - to remove these you'll need to specify an `network_rule_set` block with `default_action` set to `Deny`.

`ip_rule` supports the following:

* `action` - (Required) The behaviour for requests matching this rule. At this time the only supported value is `Allow`
Expand Down
Expand Up @@ -156,7 +156,7 @@ The following arguments are supported:

-> **NOTE:** This can only be configured when `priority` is set to `Spot`.

* `overprovision` - (Optional) Should Azure over-provision Virtual Machines in this Scale Set? This means that multiple Virtual Machines will be provisioned and Azure will keep the instances which become available first - which improves provisioning success rates and improves deployment time. You're not billed for these over-provisioned VM's and they don't count towards the Subscription Quota. Defaults to `false`.
* `overprovision` - (Optional) Should Azure over-provision Virtual Machines in this Scale Set? This means that multiple Virtual Machines will be provisioned and Azure will keep the instances which become available first - which improves provisioning success rates and improves deployment time. You're not billed for these over-provisioned VM's and they don't count towards the Subscription Quota. Defaults to `true`.

* `priority` - (Optional) The Priority of this Virtual Machine Scale Set. Possible values are `Regular` and `Spot`. Defaults to `Regular`. Changing this value forces a new resource.

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/virtual_machine_scale_set.html.markdown
Expand Up @@ -303,7 +303,7 @@ The following arguments are supported:

* `os_profile_secrets` - (Optional) A collection of Secret blocks as documented below.

* `overprovision` - (Optional) Specifies whether the virtual machine scale set should be overprovisioned.
* `overprovision` - (Optional) Specifies whether the virtual machine scale set should be overprovisioned. Defaults to `true`.

* `plan` - (Optional) A plan block as documented below.

Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/web_application_firewall_policy.html.markdown
Expand Up @@ -185,9 +185,9 @@ The `exclusion` block supports the following:

The `managed_rule_set` block supports the following:

* `type` - (Optional) The rule set type.
* `type` - (Optional) The rule set type. Possible values: `Microsoft_BotManagerRuleSet` and `OWASP`.

* `version` - (Required) The rule set version.
* `version` - (Required) The rule set version. Possible values: `0.1`, `1.0`, `2.2.9`, `3.0` and `3.1`.

* `rule_group_override` - (Optional) One or more `rule_group_override` block defined below.

Expand Down
Expand Up @@ -144,7 +144,7 @@ The following arguments are supported:

-> **NOTE:** This can only be configured when `priority` is set to `Spot`.

* `overprovision` - (Optional) Should Azure over-provision Virtual Machines in this Scale Set? This means that multiple Virtual Machines will be provisioned and Azure will keep the instances which become available first - which improves provisioning success rates and improves deployment time. You're not billed for these over-provisioned VM's and they don't count towards the Subscription Quota. Defaults to `false`.
* `overprovision` - (Optional) Should Azure over-provision Virtual Machines in this Scale Set? This means that multiple Virtual Machines will be provisioned and Azure will keep the instances which become available first - which improves provisioning success rates and improves deployment time. You're not billed for these over-provisioned VM's and they don't count towards the Subscription Quota. Defaults to `true`.

* `priority` - (Optional) The Priority of this Virtual Machine Scale Set. Possible values are `Regular` and `Spot`. Defaults to `Regular`. Changing this value forces a new resource.

Expand Down

0 comments on commit 3b78303

Please sign in to comment.