- Website: https://www.rubrik.com
- Mailing list: Google Groups
This provider plugin is maintained by the Terraform team at Rubrik.
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-rubrikEnter the provider directory and build the provider
$ cd $GOPATH/src/github.com/rubrikinc/terraform-provider-rubrik
$ make buildHere 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! ❤️
- Quick Start Guide
- Rubrik Provider for Terraform Documentation
- Rubrik API Documentation
- VIDEO: Getting Started with the Rubrik Provider for Terraform
- BLOG: Using Terraform with Rubrik Just Got Easier!
provider "rubrik" {}
resource "rubrik_configure_timezone" "LA-Timezone" {
timezone = "America/Los_Angeles"
}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 testIn 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