Skip to content

Commit 89548c5

Browse files
authored
Merge pull request #141 from athiththan11/main-27450
Add Configurable OS Disk Size for VMSS & Ignore Changes of `api_server_access_profile`
2 parents 91b076c + 3d7ca51 commit 89548c5

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,17 @@ All notable changes to this project will be documented in this file.
1616

1717
### Security
1818

19+
## [v2.3.0] - 2025-01-22
20+
21+
### Added
22+
23+
### Changed
24+
25+
- Add Configurable OS Disk Size for VMSS
26+
- Ignore Changes of `api_server_access_profile`
27+
28+
### Fixed
29+
1930
## [v2.2.0] - 2025-01-16
2031

2132
### Added

modules/azurerm/AKS-Firewall/aks_cluster.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ resource "azurerm_kubernetes_cluster" "aks_cluster" {
3636
windows_profile,
3737
kubernetes_version,
3838
default_node_pool[0].orchestrator_version,
39-
microsoft_defender
39+
microsoft_defender,
40+
api_server_access_profile
4041
]
4142
}
4243

modules/azurerm/Azure-DevOps-Custom-Image-Scale-Set-Agents/azure_devops_custom_image_scale_set_agents.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ resource "azurerm_linux_virtual_machine_scale_set" "scale_set_agent_linux_virtua
3838
os_disk {
3939
storage_account_type = "StandardSSD_LRS"
4040
caching = "ReadOnly"
41+
disk_size_gb = var.os_disk_size_gb
4142
}
4243

4344
network_interface {

modules/azurerm/Azure-DevOps-Custom-Image-Scale-Set-Agents/variables.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,3 +145,9 @@ variable "scale_in_rule" {
145145
description = "The scale in rule for the virtual machine scale set"
146146
type = string
147147
}
148+
149+
variable "os_disk_size_gb" {
150+
default = 30
151+
description = "The size of the OS disk in GB"
152+
type = number
153+
}

0 commit comments

Comments
 (0)