From fcdb7e33f5cee88d4414c1247ff0c73391b91931 Mon Sep 17 00:00:00 2001 From: iuri aranda Date: Fri, 3 Jan 2025 16:21:23 +0100 Subject: [PATCH] Switch aws provider to the hashicorp namespace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From this warning: ╷ │ Warning: Additional provider information from registry │ │ The remote registry returned warnings for │ registry.opentofu.org/opentofu/aws: │ - You are using opentofu/aws instead of hashicorp/aws. This provider is │ maintained by HashiCorp and the OpenTofu project only builds the provider │ binaries from the source code. Both the opentofu/ and hashicorp/ namespaces │ in the OpenTofu Registry contain the OpenTofu-built provider binaries based │ on the HashiCorp source code. To avoid configuration errors, we recommend │ using the hashicorp/ namespaced providers. ╵ --- capa-controller-role/giantswarm-capa-role.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capa-controller-role/giantswarm-capa-role.tf b/capa-controller-role/giantswarm-capa-role.tf index 961b600..0bc91d5 100644 --- a/capa-controller-role/giantswarm-capa-role.tf +++ b/capa-controller-role/giantswarm-capa-role.tf @@ -7,7 +7,7 @@ locals { terraform { required_providers { aws = { - source = "opentofu/aws" + source = "hashicorp/aws" version = "5.81.0" } }