Update terraform plugin

This commit is contained in:
Serge Logvinov
2022-07-15 12:05:09 +03:00
parent 66d87a895c
commit 1c2941adb4
2 changed files with 5 additions and 1 deletions

View File

@@ -25,6 +25,9 @@ resource "azurerm_shared_image" "talos" {
description = "https://www.talos.dev"
os_type = "Linux"
min_recommended_vcpu_count = 1
min_recommended_memory_in_gb = 1
hyper_v_generation = "V2"
architecture = each.key
accelerated_network_support_enabled = lower(each.key) == "x64"

View File

@@ -3,7 +3,8 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.13.0"
version = "~> 3.14.0"
}
}
required_version = ">= 1.2"
}