Skip to content

mroberts91/terraform-provider-remotekeyvalue

Repository files navigation

terraform-provider-remotekeyvalue

Remove Key Value Data Source Provider for Terraform

GitHub GitHub go.mod Go version GitHub release (latest by date) GitHub Workflow Status Terraform Provider

remotekeyvalue Provider

Example Usage

# Supply minimum provider arguments
provider "remotekeyvalue" {
  # REQUIRED - Base URL used in HTTP requests made to the KVP store
  uri                  = "https://api.my-domain.com"
}

# Supply all provider arguments
provider "remotekeyvalue" {
  # REQUIRED - Base URL used in HTTP requests made to the KVP store
  uri                  = "https://api.my-domain.com"
  
  # OPTIONAL - API Key header name to send with the request
  api_key_header_name  = "API_KEY"
  
  # OPTIONAL - API Key value for the API Key header that will be send with the HTTP request
  api_key_header_value = "12345"

  # OPTIONAl - HTTP Timeout, default: 100
  timeout              = 100
}

Schema

Required

  • uri (String) URI of the API endpoint to retrive the key value. This serves as the base of all requests.

Optional

  • api_key_header_name (String) Name of the header used to send an API Key with the request.
  • api_key_header_value (String) Value of the header used to send an API Key with the request.
  • timeout (Number) HTTP Request Timeout

About

Remove Key Value Data Source Provider for Terraform

Resources

License

Stars

Watchers

Forks

Packages

No packages published