# Vultr

### Configuration

To use this provider, add an entry to `creds.json` with `TYPE` set to `VULTR` along with a Vultr personal access token.

Example:

{% code title="creds.json" %}

```json
{
  "vultr": {
    "TYPE": "VULTR",
    "token": "your-vultr-personal-access-token"
  }
}
```

{% endcode %}

### Metadata

This provider does not recognize any special metadata fields unique to Vultr.

### Usage

An example configuration:

{% code title="dnsconfig.js" %}

```javascript
var DSP_VULTR = NewDnsProvider("vultr");

D("example.com", REG_DNSIMPLE, DnsProvider(DSP_VULTR),
    A("test", "1.2.3.4")
);
```

{% endcode %}

### Activation

Vultr depends on a Vultr personal access token.
