add aws provider
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2022-05-17 18:22:18 +02:00
parent 94478ce0ec
commit af95611693
1 changed files with 10 additions and 0 deletions

10
main.tf
View File

@ -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"
}