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

Civo's backend S3 config is out of date #2260

Open
1 task done
mrsimonemms opened this issue Aug 8, 2024 · 0 comments
Open
1 task done

Civo's backend S3 config is out of date #2260

mrsimonemms opened this issue Aug 8, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@mrsimonemms
Copy link
Contributor

Which version of kubefirst are you using?

development

Which cloud provider?

Civo

Which DNS?

None specific

Which installation type?

None specific

Which distributed Git provider?

GitHub

Did you use a fork of gitops-template?

No

Which Operating System?

Linux

What is the issue?

The Terraform backend "s3" configuration that is generated has changed so not working. It requires endpoint changing to endpoints.s3 and the skip_requesting_account_id = true needs adding to avoid it trying to connect to an amazonaws.com address.

Full working example

  backend "s3" {
    bucket   = "xxxx"
    key      = "terraform/civo/terraform.tfstate"

    region = "LON1"
    endpoints = {
      s3 = "https://objectstore.LON1.civo.com"
    }
    skip_requesting_account_id = true

    skip_credentials_validation = true
    skip_metadata_api_check     = true
    skip_region_validation      = true
    use_path_style            = true
  }

This is a confirmed problem in GitHub, but should also check GitLab too

Code of Conduct

  • I agree to follow this project's Code of Conduct
@mrsimonemms mrsimonemms added the bug Something isn't working label Aug 8, 2024
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