Skip to content

Terraform "unconfigurable attribute" on S3 buckets #139

Open
@davegaeddert

Description

@davegaeddert

This appears to be a difference in the AWS provider v3 vs v4. Future versions will probably require v4, but for now the solution is to specify < 4.0.0 for the aws provider:

terraform {
  required_providers {
    aws = {
      version = "< 4.0.0"
      source = "hashicorp/aws"
    }
  }
}

provider "aws" {
  region     = var.aws_region
  ...
}

CleanShot 2022-02-17 at 10 25 11

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions