Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
pffreitas committed Jan 11, 2022
1 parent 5067e7d commit 7375236
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Optimizely Provider

Optimizely Terraform Provider allows you to manager Optimizely resources such as Flags and Audiences.

## Example Usage

```hcl
terraform {
required_providers {
optimizely = {
source = "pffreitas/optimizely"
version = "0.0.19"
}
}
}
variable "api_host" {
type = string
default = "https://api.optimizely.com"
}
variable "api_token" {
type = string
sensitive = true
}
provider "optimizely" {
host = var.api_host
token = var.api_token
}
```

## Argument Reference

* `api_host` - (Required) List arguments this resource takes.
* `api_token` - (Required) List arguments this resource takes.

0 comments on commit 7375236

Please sign in to comment.