Add a README.md

This commit is contained in:
Mike Heier 2022-07-13 20:56:34 -04:00
parent 4e12581dea
commit 6d06fd8262

28
README.md Normal file
View File

@ -0,0 +1,28 @@
<h1>Azure DNS Update</h1>
A utility that can be used to keep your Azure DNS pointed to your on-premises/home public IP address.
<br>
## Features
- Includes one template based on this [article](https://blog.rocketseat.com.br/como-fazer-um-bom-readme);
- Can be run on a schedule
- Can be run as a Docker container
## Settings
These settings must be configured in a .env file in the same directory as the script.
```bash
SUBSCRIPTION_ID=<YOUR_SUBSCRIPTION_ID_GUID>
CLIENT_ID=<YOUR_CLIENT_ID_GUID>
CLIENT_SECRET=<YOUR_CLIENT_SECRET>
TENANT_ID=<YOUR_TENANT_ID_GUID>
RESOURCE_GROUP_NAME=<YOUR_RESOURCE_GROUP_NAME>
ZONE_NAME=<YOUR_DNS_ZONE_NAME>
RECORD_TYPE=A
RELATIVE_RECORD_SET_NAME=@
```