Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Terraform "unconfigurable attribute" on S3 buckets #139

Open
davegaeddert opened this issue Feb 17, 2022 · 0 comments
Open

Terraform "unconfigurable attribute" on S3 buckets #139

davegaeddert opened this issue Feb 17, 2022 · 0 comments
Labels
bug Something isn't working

Comments

@davegaeddert
Copy link
Member

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

@davegaeddert davegaeddert added the bug Something isn't working label Feb 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant