Skip to content

Commit

Permalink
Fix broken backend definition
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkahlbrock committed Aug 17, 2022
1 parent d5d73fa commit c726c12
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 2-third-party/main.tf
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
terraform {
required_version = "~> 1.1.7"
}

provider "aws" {
region = "eu-central-1"

backend "s3" {
key = "terraform.tfstate"
region = "eu-central-1"
}
}

provider "aws" {
region = "eu-central-1"
}

data "aws_caller_identity" "current" {}

resource "aws_s3_bucket" "website" {
Expand Down

0 comments on commit c726c12

Please sign in to comment.