fix(wpcarro/diogenes): Ensure PTR has trailing dot
For example see how Google does it: ```shell $ dig google.com 142.250.64.206 $ dig -x 142.250.64.206 mia07s56-in-f14.1e100.net. # <- trailing dot ``` Change-Id: I300ffdc03cc740628a4f07f7822e8fadaf12a57a Reviewed-on: https://cl.tvl.fyi/c/depot/+/4755 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com>
This commit is contained in:
parent
ca6be786a1
commit
f9e3ff80af
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ in wpcarro.terraform.googleCloudVM {
|
|||
|
||||
resource.google_compute_instance."${name}" = {
|
||||
network_interface.access_config = {
|
||||
public_ptr_domain_name = domainName;
|
||||
public_ptr_domain_name = "${domainName}.";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue