Skip to content

AleDecre/liqo-terraform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Liqo provider

Provider for Terraform to perform Liqo operations.

Getting Started

Follow this example steps to test locally the implemented provider.

Prerequisites

Installation

  1. in .terraform.d folder (you should have it in home/<usr>/) make directory with this command replacing architecture with your architecture (example: linux_arm64 or linux_amd64):

    mkdir -p /plugins/liqo-provider/liqo/liqo/0.0.1/<architecture>/

    my complete path is the following:

    home/<usr>/.terraform.d/plugins/liqo-provider/liqo/liqo/0.0.1/linux_arm64/

  2. from root run command replacing path with the one created in first step:

    go build -o <path>/terraform-provider-liqo

  3. in your main.tf tell to Terraform to use provider implemented locally by yoursel with this directive in required_providers:

    source = "liqo-provider/liqo/liqo"

    for example:

    terraform {
        required_providers {
            liqo = {
            source = "liqo-provider/liqo/liqo"
            }
        }
    }
  4. run command:

    terraform init

    terraform apply -auto-approve

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published