项目作者: brightbox

项目描述 :
Terraform Brightbox Cloud provider
高级语言: Go
项目地址: git://github.com/brightbox/terraform-provider-brightbox.git
创建时间: 2018-07-31T23:32:52Z
项目社区:https://github.com/brightbox/terraform-provider-brightbox

开源协议:Mozilla Public License 2.0

下载


Terraform Provider for Brightbox Cloud

Requirements

Usage

  1. # For example, restrict brightbox version to 3.x.x
  2. terraform {
  3. required_providers {
  4. brightbox = {
  5. source = "brightbox/brightbox"
  6. version = "~> 3.0"
  7. }
  8. }
  9. }

Building The Provider

Clone repository to: $GOPATH/src/github.com/brightbox/terraform-provider-brightbox

  1. $ mkdir -p $GOPATH/src/github.com/brightbox; cd $GOPATH/src/github.com/brightbox
  2. $ git clone git@github.com:brightbox/terraform-provider-brightbox

Enter the provider directory and build the provider

  1. $ cd $GOPATH/src/github.com/brightbox/terraform-provider-brightbox
  2. $ make build

Using the provider

This version supports managing:

Documentation

The announcement blog post gives a good overview:

https://www.brightbox.com/blog/2016/05/13/terraforming-brightbox-cloud/

And the getting started guide goes into more detail on how to use it

https://www.brightbox.com/docs/guides/terraform/getting-started/

Developing the Provider

If you wish to work on the provider, you’ll first need Go installed on your machine (version 1.13+ is required). You’ll also need to correctly setup a GOPATH, as well as adding $GOPATH/bin to your $PATH.

To compile the provider, run make build. This will build the provider and put the provider binary in the $GOPATH/bin directory.

  1. $ make bin
  2. ...
  3. $ $GOPATH/bin/terraform-provider-brightbox
  4. ...

In order to test the provider, you can simply run make test.

  1. $ make test

In order to run the full suite of Acceptance tests, set the following environment variables

  • BRIGHTBOX_CLIENT. The Client Id for an account
  • BRIGHTBOX_CLIENT_SECRET. The client secret for the Id.
  • BRIGHTBOX_API_URL. The Brightbox API endpoint you wish to talk to.
  • BRIGHTBOX_ORBIT_URL. The Brightbox Orbit endpoint you wish to talk to.

Then run make testacc.

  1. $ make testacc
  2. `

To run individual sets of tests add a TESTARGS argument

  1. $ make testacc TESTARGS="-run TestAccBrightboxFirewallPolicy"