Rafay terraform provider
The Rafay provider offers a flexible means of providing credentials for authentication. The following methods are supported, in this order, and explained below:
- Environment variables
- Credentials/configuration file
You can provide your credentials via the RCTL_REST_ENDPOINT
, RCTL_API_KEY
, and RCTL_PROJECT
environment variables, representing your Rafay
Console Endpoint, Rafay Access Key and Rafay Project respectively.
provider "rafay" {}
Usage:
$ export RCTL_API_KEY="rafayaccesskey"
$ export RCTL_REST_ENDPOINT="console.rafay.dev"
$ export RCTL_PROJECT="defaultproject"
$ terraform plan
! Note: For
RCTL_API_KEY
, use the entire output of the generated API key.
You can use an Rafay credentials or configuration file to specify your credentials. You can specify a location of the configuration file in the Terraform configuration by providing the provider_config_file
Usage:
provider "rafay" {
provider_config_file = "/Users/tf_user/rafay_config.json"
}
Run the following command to build the provider
$ make
First, build and install the provider.
$ make install
Then, navigate to the examples
directory.
$ cd examples/resources/rafay_project/
Run the following command to initialize the workspace and apply the sample configuration.
$ terraform init && terraform apply
export TF_LOG=TRACE
export TF_LOG_PATH=log.txt
List terraform states
terraform state
terraform state show <name>