Skip to content

Commit

Permalink
Remove default value on unique_suffix in core module (#776)
Browse files Browse the repository at this point in the history
* Remove default value on unique_suffix in core module
  • Loading branch information
Edvin N authored Sep 2, 2022
1 parent 5d7a97c commit 3f73cab
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- [#774](https://github.com/XenitAB/terraform-modules/pull/774) [Breaking] Add extra_config to ingress nginx config object.

### Changed

- [#776](https://github.com/XenitAB/terraform-modules/pull/776) [Breaking] Remove default value for unique_suffix in Azure core module.

## 2022.08.3

### Added
Expand Down
2 changes: 1 addition & 1 deletion modules/azure/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ No modules.
| <a name="input_route_config"></a> [route\_config](#input\_route\_config) | Route configuration. Not applied to AKS subnets | <pre>list(object({<br> subnet_name = string # Short name for the subnet<br> routes = list(object({<br> name = string # Name of the route<br> address_prefix = string # Example: 192.168.0.0/24<br> next_hop_type = string # VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None<br> next_hop_in_ip_address = string # Only set if next_hop_type is VirtualAppliance<br> }))<br><br> }))</pre> | `[]` | no |
| <a name="input_subnet_private_endpoints"></a> [subnet\_private\_endpoints](#input\_subnet\_private\_endpoints) | Enable private enpoint for specific subnet names | `map(bool)` | `{}` | no |
| <a name="input_subscription_name"></a> [subscription\_name](#input\_subscription\_name) | The subscription commonName to use for the deploy | `string` | n/a | yes |
| <a name="input_unique_suffix"></a> [unique\_suffix](#input\_unique\_suffix) | Unique suffix that is used in globally unique resources names | `string` | `""` | no |
| <a name="input_unique_suffix"></a> [unique\_suffix](#input\_unique\_suffix) | Unique suffix that is used in globally unique resources names | `string` | n/a | yes |
| <a name="input_vnet_config"></a> [vnet\_config](#input\_vnet\_config) | Address spaces used by virtual network | <pre>object({<br> address_space = list(string)<br> dns_servers = list(string)<br> subnets = list(object({<br> name = string<br> cidr = string<br> service_endpoints = list(string)<br> aks_subnet = bool<br> }))<br> })</pre> | n/a | yes |

## Outputs
Expand Down
1 change: 0 additions & 1 deletion modules/azure/core/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,4 @@ variable "enable_storage_account" {
variable "unique_suffix" {
description = "Unique suffix that is used in globally unique resources names"
type = string
default = ""
}
1 change: 1 addition & 0 deletions validation/azure/core/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module "core" {
location_short = "we"
subscription_name = "xks"
name = "core"
unique_suffix = ""
vnet_config = {
address_space = ["10.180.0.0/16"]
dns_servers = []
Expand Down

0 comments on commit 3f73cab

Please sign in to comment.