Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove default value on unique_suffix in core module #776

Merged
merged 3 commits into from
Sep 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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