terraform-tofu-labs/4-gitlab-ci/code/versions.tf

20 lines
394 B
Terraform
Raw Normal View History

2024-04-16 22:00:19 +00:00
terraform {
required_version = ">= 1.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4.66.1"
}
}
backend "s3" {
bucket = "demo-tofu-bucket"
key = "terraform-tofu-lab/terraform.state"
region = "eu-west-1"
acl = "bucket-owner-full-control"
dynamodb_table = "demo-tofu-table"
}
}