diff options
| author | Paul Buetow <paul@buetow.org> | 2023-12-20 11:58:32 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-12-20 11:58:32 +0200 |
| commit | 6a71bf68da349fd8da7b4bd0eacd8f7ba8202b6e (patch) | |
| tree | 2d4de55a0fe2c19bbf81528326d912fe0e48cf7a /org-buetow-ecs | |
| parent | 5a4b5959a5dfb5cdf6e9c67eaae99a5e4ac9cab9 (diff) | |
Use buetow.cloud domain
Diffstat (limited to 'org-buetow-ecs')
| -rw-r--r-- | org-buetow-ecs/audiobookshelfservice.tf | 6 | ||||
| -rw-r--r-- | org-buetow-ecs/nginxservice.tf | 6 | ||||
| -rw-r--r-- | org-buetow-ecs/vaultwardenservice.tf | 6 | ||||
| -rw-r--r-- | org-buetow-ecs/wallabagservice.tf | 8 |
4 files changed, 13 insertions, 13 deletions
diff --git a/org-buetow-ecs/audiobookshelfservice.tf b/org-buetow-ecs/audiobookshelfservice.tf index 24ec968..6752a27 100644 --- a/org-buetow-ecs/audiobookshelfservice.tf +++ b/org-buetow-ecs/audiobookshelfservice.tf @@ -1,6 +1,6 @@ resource "aws_route53_record" "a_record_audiobookshelf" { - zone_id = data.terraform_remote_state.base.outputs.aws_buetow_org_zone_id - name = "audiobookshelf.aws.buetow.org." + zone_id = data.terraform_remote_state.base.outputs.buetow_cloud_zone_id + name = "audiobookshelf.buetow.cloud." type = "A" alias { @@ -144,7 +144,7 @@ resource "aws_lb_listener_rule" "audiobookshelf_https_listener_rule" { condition { host_header { - values = ["audiobookshelf.aws.buetow.org"] + values = ["audiobookshelf.buetow.cloud"] } } } diff --git a/org-buetow-ecs/nginxservice.tf b/org-buetow-ecs/nginxservice.tf index bae4ae4..da88488 100644 --- a/org-buetow-ecs/nginxservice.tf +++ b/org-buetow-ecs/nginxservice.tf @@ -1,6 +1,6 @@ resource "aws_route53_record" "a_record" { - zone_id = data.terraform_remote_state.base.outputs.aws_buetow_org_zone_id - name = "nginx.aws.buetow.org." + zone_id = data.terraform_remote_state.base.outputs.buetow_cloud_zone_id + name = "nginx.buetow.cloud." type = "A" alias { @@ -90,7 +90,7 @@ resource "aws_lb_listener_rule" "nginx_https_listener_rule" { condition { host_header { - values = ["nginx.aws.buetow.org"] + values = ["nginx.buetow.cloud"] } } } diff --git a/org-buetow-ecs/vaultwardenservice.tf b/org-buetow-ecs/vaultwardenservice.tf index 4eff90b..d4cf5e4 100644 --- a/org-buetow-ecs/vaultwardenservice.tf +++ b/org-buetow-ecs/vaultwardenservice.tf @@ -1,6 +1,6 @@ resource "aws_route53_record" "a_record_vaultwarden" { - zone_id = data.terraform_remote_state.base.outputs.aws_buetow_org_zone_id - name = "vaultwarden.aws.buetow.org." + zone_id = data.terraform_remote_state.base.outputs.buetow_cloud_zone_id + name = "vaultwarden.buetow.cloud." type = "A" alias { @@ -105,7 +105,7 @@ resource "aws_lb_listener_rule" "vaultwarden_https_listener_rule" { condition { host_header { - values = ["vaultwarden.aws.buetow.org"] + values = ["vaultwarden.buetow.cloud"] } } } diff --git a/org-buetow-ecs/wallabagservice.tf b/org-buetow-ecs/wallabagservice.tf index 939352c..a09f680 100644 --- a/org-buetow-ecs/wallabagservice.tf +++ b/org-buetow-ecs/wallabagservice.tf @@ -1,6 +1,6 @@ resource "aws_route53_record" "a_record_wallabag" { - zone_id = data.terraform_remote_state.base.outputs.aws_buetow_org_zone_id - name = "wallabag.aws.buetow.org." + zone_id = data.terraform_remote_state.base.outputs.buetow_cloud_zone_id + name = "wallabag.buetow.cloud." type = "A" alias { @@ -46,7 +46,7 @@ resource "aws_ecs_task_definition" "wallabag" { environment = [ { name = "SYMFONY__ENV__DOMAIN_NAME", - value = "https://wallabag.aws.buetow.org" + value = "https://wallabag.buetow.cloud" } ], mountPoints = [ @@ -126,7 +126,7 @@ resource "aws_lb_listener_rule" "wallabag_https_listener_rule" { condition { host_header { - values = ["wallabag.aws.buetow.org"] + values = ["wallabag.buetow.cloud"] } } } |
