Skip to content

A simple and fast powershell module to handle API requests to Ionos's Domain Management API.

License

Notifications You must be signed in to change notification settings

jimurrito/IonMod

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IonMod : [Unofficial] Powershell/C# SDK for IONOS Domains

A simple and fast SDK for managing IONOS domains and records. This an unofficial project, and is not maintained by IONOS. This library is for C# and Powershell use.

Warning! The change to C# was breaking. Please see below examples on the login change.

Getting started

  • PowerShell Gallery/Nuget

    • install-module IonMod
  • Git

    • git clone https://github.com/jimurrito/IonMod
    • import-module path/to/IonMod.psd1

Example

Simple set of cmdlets to get all DNS Zones accessible by the API credentials provided.

Import-Module IonMod

Connect-Ion -PublicPrefix "XXXX" -Secret "XXXX"
Get-IonZone


Records Name                  Id                                   Type
------- ----                  --                                   ----
        contoso.com           00000000-0000-0000-0000-000000000000 NATIVE
        favicon.com           00000000-0000-0000-0000-000000000000 NATIVE
        whatdoesthefedsay.com 00000000-0000-0000-0000-000000000000 NATIVE

Documentation

Known issue with using keyword when using IonMod.psd1 from source in Powershell.

As mentioned here, the using keyword will not work with the named module when importing the module from source. Rule of thumb is that if you are using Import-Module and the module manifest file .psd1, you will also need to use the path when declaring using in Powershell.

# Choose one!
# From Nuget
Install-Module IonMod
Import-Module IonMod
using module IonMod

# From Source
git <....>
Import-Module /path/to/IonMod.psd1
using module /path/to/IonMod.psd1

This is not an issue in C#, and is purely a limitation of how Powershell's using keyword queries the available modules.

Any issues?

Please open an issue on this repo!

About

A simple and fast powershell module to handle API requests to Ionos's Domain Management API.

Topics

Resources

License

Stars

Watchers

Forks