AdminTurnedDevOps / DevOps-The-Hard-Way-AWS

This repository contains free labs for setting up an entire workflow and DevOps environment from a real-world perspective in AWS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error: Value for unconfigurable attribute

diamondH123 opened this issue · comments

Hashicorp recently updated how they handle the AWS s3 buckets.

You can fix this by adding a version to the AWS provider. Sourced solution from here

So that it looks like this:

provider "aws" {
  region = "us-east-2"
  version = "~> 3.74"
}

Later on you'll have to update the other sections to specify the new version as well:

aws = {
      source = "hashicorp/aws"
      version = "~> 3.74"
    }