Metadata-Version: 2.1
Name: azure-ddns
Version: 0.0.3
Summary: 
Home-page: https://github.com/tle06/azure-ddns
License: MIT
Author: tle06
Author-email: tle@tlnk.fr
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: azure-identity (>=1.10.0,<2.0.0)
Requires-Dist: azure-mgmt-dns (>=8.0.0,<9.0.0)
Project-URL: Repository, https://github.com/tle06/azure-ddns
Description-Content-Type: text/markdown

# Azure Dynamic DNS

## Installation

pip install azure-ddns

## Run

You can run the cli tool with all the parameters like this

```cmd
azure-ddns --subscription-id your_ubscription_id --tenant-id your_tenant_id --client-id your_client_id --client-secret your_client_secret --resource-group your_ressource_group_name --zone your_zone_name --record your_record-name
```

You can also use a json file

```cmd
azure-ddns --config path/to/your/config.json
```

The json should be formated like this:

```json
{
    "subscriptionId": "",
    "resourceGroup": "",
    "zoneName": "",
    "recordName": "",
    "clientId": "",
    "clientSecret": "",
    "tenantId": ""
}
```
