Skip to content

avinetworks/terraform-provider-avi-backup

Folders and files

NameName
Last commit message
Last commit date
Jul 12, 2019
Jul 16, 2019
Oct 26, 2017
Jul 9, 2019
Jul 3, 2019
Jul 16, 2019
Jul 9, 2019
Oct 26, 2017
Jul 3, 2019
Oct 26, 2017
Apr 2, 2019
May 22, 2019
Jul 9, 2019
Jul 9, 2019
Apr 6, 2018

Repository files navigation

Terraform Provider

Requirements

  • Terraform 0.10.x
  • Go 1.8 (to build the provider plugin)

Usage

Create Avi Provider in terraform plan

# For example, restrict template version in 0.1.x
provider "avi" {
  avi_username = "admin"
  avi_tenant = "admin"
  avi_password = "something"
  avi_controller= "42.42.42.42"
}

Create Avi Pool Example. Here Pool depends on read only tenant data source and another health monitor defined as resource in the terraform plan

resource "avi_pool" "testpool" {
  name= "pool-42",
  health_monitor_refs= ["${avi_healthmonitor.test_hm_1.id}"]
  tenant_ref= "${data.avi_tenant.default_tenant.id}"
  cloud_ref= "${data.avi_cloud.default_cloud.id}"
  application_persistence_profile_ref= "${avi_applicationpersistenceprofile.test_applicationpersistenceprofile.id}"
  servers {
    ip= {
      type= "V4",
      addr= "10.90.64.66",
    }
    port= 8080
  }
  fail_action= {
    type= "FAIL_ACTION_CLOSE_CONN"
  }
}

Reference existing resources as readonly or data sources

data "avi_applicationprofile" "system_http_profile" {
  name= "System-HTTP"
}

application_profile_ref= "${data.avi_applicationprofile.system_https_profile.id}"

Building The Provider

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

$ mkdir -p $GOPATH/src/github.com/avinetworks; cd $GOPATH/src/github.com/avinetworks
$ git clone https://github.com/avinetworks/terraform-provider-avi.git

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/avinetworks/terraform-provider-avi
$ make

Using the provider

Fill in for each provider

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (version 1.8+ 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.

$ make bin
...
$ $GOPATH/bin/terraform-provider-avi
...

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

$ make test

In order to run the full suite of Acceptance tests, run make testacc.

Note: Acceptance tests create real resources, and often cost money to run.

$ make testacc