imfreedom/terraform

1d8b33f07d5f
Parents a72f38500636
Children f364b114c83e
Fix some issues with using the s3 provider with minio
  • +9 -6
    terraform.tf
  • --- a/terraform.tf Tue Dec 26 01:04:41 2023 -0600
    +++ b/terraform.tf Tue Dec 26 01:05:05 2023 -0600
    @@ -2,19 +2,22 @@
    required_providers {
    libvirt = {
    source = "dmacvicar/libvirt"
    - version = "0.6.10"
    + version = "0.7.6"
    }
    }
    backend "s3" {
    + bucket = "terraform"
    + endpoints = { s3 = "https://data.imfreedom.org/" }
    +
    region = "main"
    - bucket = "terraform"
    - endpoint = "https://data.imfreedom.org"
    - force_path_style = true
    + use_path_style = true
    +
    skip_credentials_validation = true
    skip_region_validation = true
    - skip_get_ec2_platforms = true
    - skip_metadata_api_check = false
    + skip_metadata_api_check = true
    + skip_requesting_account_id = true
    + skip_s3_checksum = true
    }
    }