Skip to content

Commit

Permalink
Add template tfvars
Browse files Browse the repository at this point in the history
  • Loading branch information
luther7 committed Dec 6, 2024
1 parent 726a8db commit 9b42472
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions template.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
### AWS settings.
#
# The name of a preexisting AWS EC2 SSH key pair to register with the server. Please ensure that
# this key is added to your SSH agent.
aws_ssh_key_name = "TODO"

### Tailscale settings.
#
# Tailscale tags for the server. Tags may allow automatic access to the server.
# Reference: https://tailscale.com/kb/1068/tags
tailscale_tags = ["tag:TODO"]

### mTLS certificate settings.
#
# The cert common name. Set this to be the domain of the Traccar server.
cert_common_name = "TODO"
# The cert organization. The value is not important as the certificate is self-signed.
cert_organization = "TODO"
# The cert organizational unit. The value is not important as the certificate is self-signed.
cert_organizational_unit = "TODO"
# The cert country. The value is not important as the certificate is self-signed.
cert_country = "TODO"

### ddclient settings.
#
# Reference: https://ddclient.net/protocols.html
#
# The ddclient protocol e.g. 'cloudflare'.
ddclient_protocol = "TODO"
# The ddclient user e.g. the email of your Cloudflare account.
ddclient_user = "TODO"
# The ddclient password e.g. an API token for your Cloudflare account.
ddclient_password = "TODO"
# The ddclient zone. Set this to the zone name of the Traccar server's domain (the
# domain name and top-level domain). For example, if the Traccar server's domain is
# traccar.example.com, the zone is likely to be example.com.
ddclient_zone = "TODO"
# The ddclient host. Set this to the fully-qualified host name of the Traccar server (subdomain,
# domain name and top-level domain)
ddclient_host = "TODO"

0 comments on commit 9b42472

Please sign in to comment.