added variables

This commit is contained in:
Patrick de Ruiter 2021-08-16 10:57:53 +02:00
parent 22ebef594d
commit 425a63a6a5

View File

@ -6,6 +6,26 @@ variable "enabled" {
variable "users" {
description = "List of Datadog user maps to manage"
type = list(string)
# users = [
# {
# name = "user1"
# handle = "user1@example.com"
# },
# {
# name = "admin1"
# handle = "admin1@example.com"
# admin = "true"
# disabled = "false"
# },
# {
# name = "dis1"
# handle = "dis1@example.com"
# email = "disy1@example.com"
# disabled = "true"
# role = "ro"
# },
# ]
}
variable "datadog_api_key" {