Metadata-Version: 2.1
Name: oci-lego-exec
Version: 0.1.0
Summary: Oracle Cloud infrastructure DNS Authenticator script for LEGO
Home-page: https://github.com/ITD27M01/oci-lego-exec
Author: itd27m01
Author-email: igortiunov@gmail.com
License: MIT
Description: # Oracle Cloud infrastructure DNS Authenticator script for LEGO
        
        https://go-acme.github.io/lego/dns/exec/
         
        Script automates the process of `dns-01` challenge by managing TXT records using the Oracle Cloud Infrastructure
        DNS service.
        
        ## Why?
        
        This package provides simple `ocilego` utility to being executed by lego in `acme_certificate`
        terraform resource. Native `oraclecloud` provider is difficult to use because of uncommon authentication
        variables: https://github.com/go-acme/lego/issues/1380
        
        ## Installation
        
        ```shell
        pip3 install oci-lego-exec
        ```
        
        ## Usage
        
        ```terraform
        resource "acme_certificate" "certificate" {
          ...
        
          dns_challenge {
            provider = "exec"
        
            config = {
              "EXEC_PATH" = "ocilego"
            }
          }
        }
        ```
        
        ## Requirements
        ```
        oci
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: System Administrators
Classifier: Environment :: Plugins
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security
Classifier: Topic :: System :: Networking
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
