From af95611693525ddd33dd9dcb5429ff6b8d995305 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Tue, 17 May 2022 18:22:18 +0200 Subject: [PATCH] add aws provider --- main.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/main.tf b/main.tf index ad06e0e..99b92a3 100644 --- a/main.tf +++ b/main.tf @@ -13,6 +13,11 @@ terraform { source = "cloudflare/cloudflare" version = "~> 3.0" } + + aws = { + source = "hashicorp/aws" + version = "~> 3.27" + } } } @@ -23,3 +28,8 @@ provider "azurerm" { provider "cloudflare" { } + +provider "aws" { + profile = "default" + region = "eu-central-2" +}