Remove Key Value Data Source Provider for Terraform
# 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
}
uri
(String) URI of the API endpoint to retrive the key value. This serves as the base of all requests.
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