From f6f2e9317a78770cbe52897e2f81c5443f0520a5 Mon Sep 17 00:00:00 2001 From: Tom Archer Date: Tue, 6 Feb 2024 12:34:17 -0800 Subject: [PATCH] Fixed default value --- .../101-azure-api-management-create-with-api/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstart/101-azure-api-management-create-with-api/variables.tf b/quickstart/101-azure-api-management-create-with-api/variables.tf index 79e4ce13..f4ecd97a 100644 --- a/quickstart/101-azure-api-management-create-with-api/variables.tf +++ b/quickstart/101-azure-api-management-create-with-api/variables.tf @@ -12,7 +12,7 @@ variable "resource_group_location" { variable "open_api_spec_content_format" { type = string - default = "" + default = "openapi" description = "The format of the content from which the API Definition should be imported. Possible values are: openapi, openapi+json, openapi+json-link, openapi-link, swagger-json, swagger-link-json, wadl-link-json, wadl-xml, wsdl and wsdl-link." validation { condition = contains(["openapi", "openapi+json", "openapi+json-link", "openapi-link", "swagger-json", "swagger-link-json", "wadl-link-json", "wadl-xml", "wsdl", "wsdl-link"], var.open_api_spec_content_format)