Skip to content

Commit

Permalink
Remove lower filter from managed_disk_type parameter (#2970)
Browse files Browse the repository at this point in the history
With current version of Terraform we don't need to use filter.
  • Loading branch information
cicharka authored Feb 10, 2022
1 parent bb96e09 commit 5bd4d62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/azure/infrastructure/virtual-machine.j2
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ resource "azurerm_virtual_machine" "{{ specification.name }}" {
create_option = "{{ specification.storage_os_disk.create_option }}"
disk_size_gb = "{{ specification.storage_os_disk.disk_size_gb }}"
{%- if specification.storage_os_disk.managed %}
managed_disk_type = "{{ specification.storage_os_disk.managed_disk_type | lower }}"
managed_disk_type = "{{ specification.storage_os_disk.managed_disk_type }}"
{%- endif %}
}

Expand Down

0 comments on commit 5bd4d62

Please sign in to comment.