Compare commits

..

No commits in common. "5dd9b6b01c3a53501e64b38674041b782a0683d0" and "58825953b2a1dad3e9bd1d1e47b37a1eab417a0e" have entirely different histories.

3 changed files with 16 additions and 26 deletions

View file

@ -1,13 +0,0 @@
module "headscale" {
#source = "github.com/matthewbaggett/terraform_modules//products/headscale"
source = "./lib/grey.ooo/products/headscale"
depends_on = [module.traefik]
stack_name = "headscale"
placement_constraints = ["node.hostname == Passing-by-and-thought-id-drop-in"]
#traefik = merge(var.treafik_defaults, { domain = "s3.${var.base_domain}" })
domain = "headscale.${var.base_domain}"
}
output "headscale" {
value = module.headscale
}

@ -1 +1 @@
Subproject commit 432f5a4f37da6963706473396e78f172dae1decc
Subproject commit 48626c5e64249f52064d28eb014babeefc3d7be4

View file

@ -28,16 +28,19 @@ terraform {
}
}
backend "s3" {
bucket = "techinc-iac"
key = "terraform.tfstate"
profile = "techinc-iac"
shared_credentials_files = ["~/.aws/credentials"]
region = "" # Region validation will be skipped
skip_credentials_validation = true # Skip AWS related checks and validations
skip_requesting_account_id = true
skip_metadata_api_check = true
skip_region_validation = true
use_path_style = false
}
# backend "s3" {
# bucket = "terraform"
# key = "ti-iac.tfstate"
# profile = "techinc-tf"
# shared_credentials_files = ["~/.aws/credentials"]
# endpoints = {
# s3 = "http://california.ti:9000"
# }
# region = "main" # Region validation will be skipped
# skip_credentials_validation = true # Skip AWS related checks and validations
# skip_requesting_account_id = true
# skip_metadata_api_check = true
# skip_region_validation = true
# use_path_style = true # Enable path-style S3 URLs (https://<HOST>/<BUCKET> https://developer.hashicorp.com/terraform/language/settings/backends/s3#use_path_style
# }
}