Releases: Azure/terraform-azurerm-avm-res-azurestackhci-cluster
Releases · Azure/terraform-azurerm-avm-res-azurestackhci-cluster
Change resource namespace to correct casing
0.5.1 revert namespace casing (#17)
Add more options to override the default values
Add more options to override the default values (#16) * change resource namespace to lower case * add more options to override the default value * fmt and doc
fix validation logic for operation_type
0.4.2 fix validation logic for operation_type (#14)
Add null support for `operation_type`
add null support for operation_type (#13) * add null support for operation_type * fix operation_type validation
Add use_legacy_key_vault_model, configuration_mode and security setting variables
Zilu/keyvault legacy (#12) * add a switch to use legacy key vault model * change the way to set secrets location add more variables * change back the implementation due to the validation error * remove security settings local var * use flatten magic to bypass validation error * fix plan error
Add `storage_adapter_ip_info` parameter
A new parameter storage_adapter_ip_info
is added to allocate static ip address for storage network.
A sample definition could be
storage_adapter_ip_info = {
storage_network_a = [{
physicalNode = "HostA"
ipv4Address = "192.168.200.10"
subnetMask = "255.255.255.0"
}, {
physicalNode = "HostB"
ipv4Address = "192.168.200.11"
subnetMask = "255.255.255.0"
}]
storage_network_b = [{
physicalNode = "HostA"
ipv4Address = "192.168.201.10"
subnetMask = "255.255.255.0"
}, {
physicalNode = "HostB"
ipv4Address = "192.168.201.11"
subnetMask = "255.255.255.0"
}]
}
Add new parameter to define ip address for storage networks
A new parameter storage_adapter_ip_info
is added to allocate static ip address for storage network.
A sample definition could be
storage_adapter_ip_info = {
storage_network_a = [{
physicalNode = "HostA"
ipv4Address = "192.168.200.10"
subnetMask = "255.255.255.0"
}, {
physicalNode = "HostB"
ipv4Address = "192.168.200.11"
subnetMask = "255.255.255.0"
}]
storage_network_b = [{
physicalNode = "HostA"
ipv4Address = "192.168.201.10"
subnetMask = "255.255.255.0"
}, {
physicalNode = "HostB"
ipv4Address = "192.168.201.11"
subnetMask = "255.255.255.0"
}]
}