Skip to content

Commit

Permalink
chore: update changelog with basic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gareda committed Jul 26, 2024
1 parent 0ec9913 commit e8233bc
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 9 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@
<!-- markdownlint-disable MD041 -->
## 2.0.0 (XXXXXX XX, 202X)

BREAKING CHANGES:

* dependencies: updating to `v2.0.0` minimum of terraform.
* dependencies: updating to `v3.40.0` minimum of hashicorp/azurerm provider.

ENHANCEMENTS:

* The `sku.capacity` parameter changes the `string` type to `number` and is now an optional parameter.
* The `autoscale_configuration.min_capacity` parameter changes type `string` to `number`.
* The `autoscale_configuration.max_capacity` parameter changes type `string` to `number`.

FEATURES:

* **New Parameter**:

BUG FIXES:

DEPRECATIONS:

* **Parameter**:

## 1.2.0 (January 27, 2022)

FEATURES:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ The following parameters are supported:
|location|The location/region where the Application Gateway is created.|`string`|n/a|yes|
|tags|A mapping of tags to assign to the resource.|`map(string)`|`{}`|no|
|sku|A mapping with the sku configuration of the application gateway.|`object({})`|n/a|yes|
|autoscale\_configuration|A mapping with the autoscale configuration of the application gateway.|`object({})`|`null`|no|
|subnet\_id|The ID of the Subnet which the Application Gateway should be connected to.|`string`|n/a|yes|
|waf\_configuration|A mapping with the waf configuration of the application gateway.|`object({})`|`{}`|no|
|frontend\_ip\_configuration|A mapping the front ip configuration.|`object({})`|n/a|yes|
Expand Down
18 changes: 9 additions & 9 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ variable "sku" {
type = object({
tier = string
size = string
capacity = number
capacity = optional(number)
})
description = "A mapping with the sku configuration of the application gateway."
}

# variable "autoscale_configuration" {
# type = object({
# min_capacity = number
# max_capacity = number
# })
# default = null
# description = "A mapping with the autoscale configuration of the application gateway."
# }
variable "autoscale_configuration" {
type = object({
min_capacity = number
max_capacity = number
})
default = null
description = "A mapping with the autoscale configuration of the application gateway."
}

variable "subnet_id" {
type = string
Expand Down

0 comments on commit e8233bc

Please sign in to comment.