Skip to content
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,17 @@ All notable changes to this project will be documented in this file.

### Security

## [v2.3.0] - 2025-01-22

### Added

### Changed

- Add Configurable OS Disk Size for VMSS
- Ignore Changes of `api_server_access_profile`

### Fixed

## [v2.2.0] - 2025-01-16

### Added
Expand Down
3 changes: 2 additions & 1 deletion modules/azurerm/AKS-Firewall/aks_cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ resource "azurerm_kubernetes_cluster" "aks_cluster" {
windows_profile,
kubernetes_version,
default_node_pool[0].orchestrator_version,
microsoft_defender
microsoft_defender,
api_server_access_profile
]
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ resource "azurerm_linux_virtual_machine_scale_set" "scale_set_agent_linux_virtua
os_disk {
storage_account_type = "StandardSSD_LRS"
caching = "ReadOnly"
disk_size_gb = var.os_disk_size_gb
}

network_interface {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,9 @@ variable "scale_in_rule" {
description = "The scale in rule for the virtual machine scale set"
type = string
}

variable "os_disk_size_gb" {
default = 30
description = "The size of the OS disk in GB"
type = number
}
Loading