amazon-route53

NGINX Reverse Proxy + ngx_upstream_resolveMK - Trying to resolve SRV from ECS Service Discovery Route53 Auto Naming

依然范特西╮ 提交于 2021-01-01 06:37:19
问题 I'm currently having an issue with ECS Service Discovery and Route53 Auto Naming. I have added the Service Registry to the service and all the Hosted Zones records are being populated automatically. But I cannot seem to work out how to resolve the DNS SRV records with NGINX + ngx_upstream_resolveMK. # DNS RESOLVER resolver ns-x.awsdns-xx.com valid=10s; # UPSTREAMS upstream kibana { resolveMK servicediscovery.ecs service=kibana; } # HOST - kibana.example.com server { server_name kibana.example

Error (InvalidChangeBatch) in adding multiple DNS Records from aws command line

╄→尐↘猪︶ㄣ 提交于 2020-08-10 05:01:10
问题 I am trying to add multiple DNS records using this script add_multipleDNSrecord.sh and i am getting this error A client error (InvalidChangeBatch) occurred when calling the ChangeResourceRecordSets operation: FATAL problem: UnsupportedCharacter (Value contains unsupported characters) encountered with ' ' But i am able to add single record without any issue from aws cli. can anyone please tell me what went wrong in this script? #!/bin/bash # declare STRING variable STRING="Hello World" #print

how to use route 53 with yandex connect and forward mails from domain

こ雲淡風輕ζ 提交于 2020-06-29 04:08:29
问题 so i figured, aws route 53 + improvmx + gmail 2 step verification + Create an App Password + Add email to Gmail + failing confirmation msg (550 5.2.1 The email account that you tried to reach is disabled. (#id-5.9.2b) - ImprovMX) is a very good user experience for domain mail forwarding... so i tried yandex connect and guess what? i cant get my head around it. i keep getting 550 5.7.1 No such user! i added my domain to yandex connect and went through the steps, got the dns and the mx record

How can I iterate through a map variable in terraform

非 Y 不嫁゛ 提交于 2020-06-28 14:34:26
问题 Im trying to iterate through a variable type map and i'm not sure how to This is what i have so far In my main.tf: resource "aws_route_53_record" "proxy_dns" { count = "${length(var.account_name)}" zone_id = "${infrastructure.zone_id}" name = "proxy-${element(split(",", var.account_name), count.index)}-dns type = CNAME ttl = 60 records = ["{records.dns_name}"] } And in my variables.tf variable "account_name" { type = "map" default = { "account1" = "accountA" "account2" = "accountB" } } I want