From 406febf6443a0ec6a948e2c4d990736365376b61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix-Antoine=20Fortin?= Date: Wed, 20 May 2020 17:12:53 -0400 Subject: [PATCH] Revert image type to any --- CHANGELOG | 6 ++++++ common/variables.tf | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 0717784c3..56a428c9e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). + +## [7.2] 2020-05-20 + +### Changed +- Reverted type of image variable from string to any because Azure image input is a map. + ## [7.1] 2020-05-20 ### Changed diff --git a/common/variables.tf b/common/variables.tf index d82df72d2..4a1dfc88f 100644 --- a/common/variables.tf +++ b/common/variables.tf @@ -18,7 +18,7 @@ variable "instances" { } variable "image" { - type = string + type = any description = "Name of the operating system image that will be used to create a boot disk for the instances" }