mirror of
https://github.com/jlengrand/engine.git
synced 2026-04-05 08:11:19 +00:00
feat: scaleway integration / infrastructure This CL introduces scaleway as cloud provider and allow to create an infrastructure on it. Tickets: DEV-914, DEV-926, DEV-915 Co-authored-by: Pierre Mavro <pmavro@qovery.com>
10 lines
396 B
HCL
10 lines
396 B
HCL
terraform {
|
|
backend "s3" {
|
|
access_key = "{{ aws_access_key_tfstates_account }}"
|
|
secret_key = "{{ aws_secret_key_tfstates_account }}"
|
|
bucket = "{{ aws_terraform_backend_bucket }}"
|
|
key = "{{ kubernetes_cluster_id }}/{{ aws_terraform_backend_bucket }}.tfstate"
|
|
dynamodb_table = "{{ aws_terraform_backend_dynamodb_table }}"
|
|
region = "{{ aws_region_tfstates_account }}"
|
|
}
|
|
} |