Configure AWS Terraform
provider "aws" {
region = "de"
access_key = "access_key_here"
secret_key = "secret_key_here"
# all these checks need to be skipped for an s3 external provider
skip_credentials_validation = true
skip_requesting_account_id = true
skip_region_validation = true
endpoints {
s3 = "https://s3-eu-central-1.ionoscloud.com"
}
}Last updated
Was this helpful?