This provider is used to manage Hosted collectors and sources supported by Sumo Logic.
The code in this repository has been developed in collaboration with the Sumo Logic community and is not supported via standard Sumo Logic Support channels. For any issues or questions please submit an issue within the GitHub repository. The maintainers of this project will work directly with the community to answer any questions, address bugs, or review any requests for new features.
Released under Apache 2.0 License.
The provider needs to be configured with the proper credentials before it can be used. You must provide an Access ID and Access Key to use this provider.
The Sumo Logic Provider offers a flexible means of providing credentials for authentication. The following methods are supported and explained below:
- Static credentials
- Environment variables
Static credentials can be provided by adding an access_id
and access_key
in-line in the Sumo Logic provider block:
Usage:
provider "sumologic" {
access_id = "your-access-id"
access_key = "your-access-key"
}
You can provide your credentials via the SUMOLOGIC_ACCESSID
and SUMOLOGIC_ACCESSKEY
environment variables, representing your Sumo Logic Access ID and Sumo Logic Access Key, respectively.
Usage:
provider "sumologic" { }
$ export SUMOLOGIC_ACCESSID="your-access-id"
$ export SUMOLOGIC_ACCESSKEY="your-access-id"
$ terraform plan
access_id
- (Optional) This is the Sumo Logic Access ID. It must be provided, but it can also be sourced from the SUMOLOGIC_ACCESSID environment variable.access_key
- (Optional) This is the Sumo Logic Access Key. It must be provided, but it can also be sourced from the SUMOLOGIC_ACCESSKEY environment variable.environment
- (Optional) This is the API endpoint to use. Default is us2, but it can also be sourced from the SUMOLOGIC_ENVIRONMENT environment variable. See the Sumo Logic documentation for details on which environment you should use.
In this section you will learn how to build and run terraform-provider-sumologic locally. Please follow the steps below:
- Terraform 0.11.x
- Go >= 1.9 (to build the provider plugin)
- Sumo Logic
make install