Skip to content

How To Use the IONOS DNS Plugin

This plugin works against the IONOS.de/IONOS.com DNS provider. It is assumed that you have already setup an account and one or more domains you will be working against.

Setup

You will need to generate an API Token if you haven't already done so. Follow the guide provided by IONOS here (DE) or here (EN).

Using the Plugin

You will need to provide the API Public Prefix to IONOSKeyPrefix and the API Secret to IONOSKeySecret.

$pArgs = @{
    IONOSKeyPrefix = (Read-Host 'API Public Prefix')
    IONOSKeySecret = (Read-Host 'API Secret' -AsSecureString)
}

New-PACertificate example.com -Plugin IONOS -PluginArgs $pArgs