configuration

package
v1.0.0-rc6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 31, 2022 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Overview

Package configuration TODO

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Template

func Template(kind string, provisioner string) (string, error)

Template generates a yaml with a sample configuration requested by the client

Types

type Configuration

type Configuration struct {
	Kind        string            `yaml:"kind"`
	Metadata    Metadata          `yaml:"metadata"`
	Spec        interface{}       `yaml:"spec"`
	Executor    TerraformExecutor `yaml:"executor"`
	Provisioner string            `yaml:"provisioner"`
}

Configuration represents the base of the configuration file

func Parse

func Parse(path string) (*Configuration, error)

Parse parses a yaml configuration file (path) returning the parsed configuration file as a Configuration struct

type Metadata

type Metadata struct {
	Name   string                 `yaml:"name"`
	Labels map[string]interface{} `yaml:"labels"`
}

Metadata represents a set of metadata information to be used while performing operations

type StateConfiguration

type StateConfiguration struct {
	Backend string            `yaml:"backend"`
	Config  map[string]string `yaml:"config"`
}

StateConfiguration represents the terraform state configuration to be used

type TerraformExecutor

type TerraformExecutor struct {
	// StateConfiguration configures the terraform state to use
	StateConfiguration StateConfiguration `yaml:"state"`
}

TerraformExecutor represents the terraform executor configuration to be used

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL