LaunchDarkly Provider
LaunchDarkly (https://launchdarkly.com/) is a continuous delivery platform that provides feature ags as a service and allows developers to iterate quickly and safely. Use the LaunchDarkly provider to interact with LaunchDarkly resources, such as projects, environments, feature ags, and more. You must congure the provider with the proper credentials before you can use it.
Example Usage
provider "launchdarkly" { access_token = = var.launchdarkly_access_token launchdarkly_access_token } resource "launchdarkly_project" "terraform" { } resource "launchdarkly_feature_flag" "terraform" { }
Argument Reference
The provider supports the following arguments:
access_token - (Optional) The personal access token (https://docs.launchdarkly.com/docs/api-access-tokens) you
use to authenticate with LaunchDarkly. You can also set this with the LAUNCHDARKLY_ACCESS_TOKEN environment
- variable. You must provide either access_token or oauth_token .
- auth_token - (Optional) An OAuth V2 token you use to authenticate with LaunchDarkly. You can also set this with
the LAUNCHDARKLY_OAUTH_TOKEN environment variable. You must provide either access_token or oauth_token .
api_host - (Optional) The LaunchDarkly host address. If this argument is not specied, the default host address is https://app.launchdarkly.com .