Compare commits
No commits in common. "a0cc54443a6fd118a997ddc2cf3aa7a0c7c9ac04" and "5dd9b6b01c3a53501e64b38674041b782a0683d0" have entirely different histories.
a0cc54443a
...
5dd9b6b01c
3 changed files with 14 additions and 14 deletions
|
@ -5,7 +5,7 @@ module "headscale" {
|
|||
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}"
|
||||
domain = "headscale.${var.base_domain}"
|
||||
}
|
||||
output "headscale" {
|
||||
value = module.headscale
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 15575361e769f9ff9dafa5cb2ab955107d4e6881
|
||||
Subproject commit 432f5a4f37da6963706473396e78f172dae1decc
|
24
terraform.tf
24
terraform.tf
|
@ -28,16 +28,16 @@ terraform {
|
|||
}
|
||||
}
|
||||
|
||||
backend "s3" {
|
||||
bucket = "techinc-iac"
|
||||
key = "terraform.tfstate"
|
||||
profile = "techinc-iac"
|
||||
shared_credentials_files = ["~/.aws/credentials"]
|
||||
region = "skip" # 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
|
||||
skip_s3_checksum = true
|
||||
}
|
||||
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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue