Skip to content
This repository has been archived by the owner on Sep 22, 2020. It is now read-only.

hashicorp/terraform-provider-rubrik

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Terraform Rubrik Provider

Maintainers

This provider plugin is maintained by the Terraform team at Rubrik.

Requirements

  • Terraform 0.12.x
  • Go 1.11 (to build the provider plugin)

Building The Provider

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

$ git clone git@github.com:rubrikinc/terraform-provider-rubrik $GOPATH/src/github.com/rubrikinc/terraform-provider-rubrik

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/rubrikinc/terraform-provider-rubrik
$ make build

Using the provider

Here are some resources to get you started! If you find any challenges from this project are not properly documented or are unclear, please raise an issue and let us know! This is a fun, safe environment - don't worry if you're a GitHub newbie! ❤️

🔍 Example

provider "rubrik" {}

resource "rubrik_configure_timezone" "LA-Timezone" {
  timezone = "America/Los_Angeles"
}

Developing the Provider

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

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