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

Upstream provider will be usable soon #1

Open
rslinckx opened this issue Mar 11, 2022 · 3 comments
Open

Upstream provider will be usable soon #1

rslinckx opened this issue Mar 11, 2022 · 3 comments

Comments

@rslinckx
Copy link

There has been some work on the upstream provider to ignore some not-implemented aspects of the S3 API for various third-parties, outscale is one of them.

See: hashicorp/terraform-provider-aws#23291

It looks like soon this fork won't be needed anymore.

If you could weigh in on that issue so that things get moving for the missing parts (tags, notably) it would be great !

@jerome-jutteau
Copy link
Contributor

Hi @rslinckx,
Great news ! Hope this will be upstreamed soon !

@emidevops
Copy link

I try the mainstream provider with OOS for simple bucket creation and... it works !

provider "aws" {
  access_key = var.outscale_object_storage_access_key_id
  secret_key = var.outscale_object_storage_secret_key_id
  region = "eu-west-2"

  # disable checks related to aws
  skip_region_validation      = true
  skip_credentials_validation = true
  skip_requesting_account_id  = true
  skip_metadata_api_check     = true

  endpoints {
    s3 = "https://oos.eu-west-2.outscale.com"
  }
}

resource "aws_s3_bucket" "mybucket" {
  bucket = "mybucket"
  acl = "private"

  # dont do that on real project :-)
  force_destroy = true
}

@jerome-jutteau
Copy link
Contributor

Thanks @emidevops for your feedback ! We will check if this repo is still needed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

3 participants