forked from the-distro/infra
terraform: store state on S3
This commit is contained in:
parent
0c68a23275
commit
30859b2872
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hydra.nix
|
./hydra.nix
|
||||||
|
./state.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
21
terraform/state.nix
Normal file
21
terraform/state.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
# We use terraform.backend.s3 directly instead of the type-checked Terranix
|
||||||
|
# backend.s3 options. The latter does not support setting arbitrary s3
|
||||||
|
# endpoints.
|
||||||
|
#
|
||||||
|
# Note: currently requires the user to provide AWS_ACCESS_KEY_ID as well as
|
||||||
|
# AWS_SECRET_ACCESS_KEY in their environment variables.
|
||||||
|
|
||||||
|
terraform.backend.s3 = {
|
||||||
|
endpoints.s3 = "s3.delroth.net";
|
||||||
|
region = "garage";
|
||||||
|
bucket = "bagel-terraform-state";
|
||||||
|
key = "state";
|
||||||
|
|
||||||
|
# It's just a dump Garage server, don't try to be smart.
|
||||||
|
skip_credentials_validation = true;
|
||||||
|
skip_region_validation = true;
|
||||||
|
skip_requesting_account_id = true;
|
||||||
|
skip_metadata_api_check = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue