From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 81EEE30C602 for ; Tue, 2 Sep 2025 13:54:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756821272; cv=none; b=eB5ZU2eHYN1cjo/PUkyoYfz1/DPI37Pz/xghq/7hQZOxQcQf9fqmnts7BzzJjYRhbDhAqJ2oJxopykSlUE9AYIIkjKN0arPJJFwFAvB/a4NbsxMiKLqo68MNoHmsNbeN/9S3qIZjLyhEc/br8ge9NsGpkpFCu3cJNtA/KhvGk/c= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756821272; c=relaxed/simple; bh=DA3wXQPQMVWfW2GYLMhiFdmc2Nfk0vYwekXGejvNPJI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=vAyky5zRqjY0sl6hzMDbvLVOBU/DZHiCn5PtJkvi+SsdhkkeUpIAzVLjE2jSNSWCO1xATpvUEIivGqRo8epf6YmdkxxQXqUQE1CckeB421AOmPm6wwBmCN3FpCKanHX31KIhmwPEAM5C96LagIXouUApTTJvG0ij/5TREcddUWg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=HlfkCW2u; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="HlfkCW2u" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C3DE8C4CEF6; Tue, 2 Sep 2025 13:54:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756821272; bh=DA3wXQPQMVWfW2GYLMhiFdmc2Nfk0vYwekXGejvNPJI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HlfkCW2uOd5W6tbOt4VUk4EU4cj6ttO+9WUMeHpuP/aqY7O/x67KwY6gJUK5nfzp0 q5sDyAb1w+LN8tMivyM9BQ5QeFQNCb7UqZboQDOPFVkoISvA+LdmI/EcM3mlSaShM9 WMbjZpoCuCxOztjXiuwoJ7QNEh5Z1FLjvRstqEWRtd/jYI/4Z99/AD1ouk/JCo0RDm si5gdp126P6FMeQ2azl1rQ2k5bR77RZ4z7YjDpxbpaADWH58R9Z9lO+5gZ9wjYqOBf 1sqBGjHtkLiFbhdSPEhRN075u+Yj/YgoXreTpipfdJl3nPpSzz8IIgF9ysOUd1+2/t reukBI54Dfvgw== From: Chuck Lever To: Cc: Chuck Lever , Luis Chamberlain Subject: [PATCH v2 06/37] terraform/azure: Remove the provider version constraint Date: Tue, 2 Sep 2025 09:53:53 -0400 Message-ID: <20250902135426.815079-7-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250902135426.815079-1-cel@kernel.org> References: <20250902135426.815079-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chuck Lever The most recent version 3 release of hashicorp/azurerm was 3.117.1, released on February 28, 2025. Version 3 is no longer getting fixes. Reviewed-by: Luis Chamberlain Signed-off-by: Chuck Lever --- terraform/azure/provider.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/azure/provider.tf b/terraform/azure/provider.tf index 97baad4245d7..4b6380bbc68c 100644 --- a/terraform/azure/provider.tf +++ b/terraform/azure/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { azurerm = { source = "hashicorp/azurerm" - version = "~>3" + version = "> 4" } } } -- 2.51.0