Git Product home page Git Product logo

Comments (5)

rmbolger avatar rmbolger commented on June 5, 2024

Hi @aboulang, thanks for reaching out. Last I checked which was a few years ago, ZoneEdit didn't have an API capable of making TXT record changes. But I did a quick web search and it looks like they may have implemented some sort of DynDNS compatible API that might work. It will take some time to look into though.

I'd be curious if it's compatible with the plugin @jbrunink is working on in #494.

from posh-acme.

jbrunink avatar jbrunink commented on June 5, 2024

Doesn't look to be compatible with my plugin unfortunately.

from posh-acme.

rmbolger avatar rmbolger commented on June 5, 2024

Hey @aboulang, I just added a new branch with the commit linked above that has a working ZoneEdit plugin. I still need to write the guide and some other stuff to get it ready to merge. But you should be able to grab the file and test it against your stuff.

Here's a quick start on using it. You need to generate an authentication token for the zone you're creating the record in. Then, try publishing a record like this:

$pArgs = @{
    ZEUsername = 'myusername'
    ZEDynCredential = (Get-Credential 'example.com')
}
New-PACertificate example.com -Plugin ZoneEdit -PluginArgs $pArgs -Verbose

If you need to get a cert that contains names from multiple different zones, you need to provide each zone's authentication token in your plugin parameters like this:

$pArgs = @{
    ZEUsername = 'myusername'
    ZEDynCredential = @(
        (Get-Credential 'example.com')
        (Get-Credential 'example.net')
    )
}

from posh-acme.

rmbolger avatar rmbolger commented on June 5, 2024

This is now live in 4.19.0.

from posh-acme.

aboulang avatar aboulang commented on June 5, 2024

Hey @aboulang, I just added a new branch with the commit linked above that has a working ZoneEdit plugin.

Thanks @rmbolger !

from posh-acme.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.