AdminTurnedDevOps/DevOps-The-Hard-Way-AWS

Error: Value for unconfigurable attribute

diamondH123 opened this issue · 1 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"
    }