Skip to content

Commit

Permalink
Resolve #119 - Add example provider (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-r-west authored May 29, 2021
1 parent e77a41f commit 2585be5
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions examples/provider/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
provider "scaffolding" {
# example configuration here
provider "epcc" {
// Can set via `EPCC_CLIENT_ID` environment variable.
client_id = "some_client_id"

// Can set via `EPCC_CLIENT_SECRET` environment variable.
client_secret = "some_client_secret"

// Can set via `EPCC_API_BASE_URL` environment variable
api_base_url = "https://api.moltin.com/"

// Can set via `EPCC_BETA_API_FEATURES` environment variable.
beta_features = "account-management"
}

0 comments on commit 2585be5

Please sign in to comment.