This repository has been archived on 2023-12-13. You can view files and clone it, but cannot push or open issues or pull requests.
cloud-resources/main.tf

36 lines
517 B
Terraform
Raw Normal View History

2022-04-25 19:46:21 +02:00
terraform {
2022-04-25 23:27:57 +02:00
backend "artifactory" {
repo = "terraform"
subpath = "terraform-state"
2022-04-25 22:30:25 +02:00
}
2022-04-25 19:46:21 +02:00
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.0.2"
}
2022-04-25 22:30:25 +02:00
cloudflare = {
source = "cloudflare/cloudflare"
version = "~> 3.0"
}
2022-05-17 18:22:18 +02:00
aws = {
source = "hashicorp/aws"
version = "~> 3.27"
}
2022-04-25 19:46:21 +02:00
}
}
provider "azurerm" {
features {}
}
2022-04-25 22:30:25 +02:00
provider "cloudflare" {
}
2022-05-17 18:22:18 +02:00
provider "aws" {
profile = "default"
2022-05-17 18:26:44 +02:00
region = "eu-central-1"
2022-05-17 18:22:18 +02:00
}