From 4e0be10d976aae1fec11f7f2eb662f1ab09a0026 Mon Sep 17 00:00:00 2001 From: Quentin Manfroi Date: Fri, 3 Nov 2017 17:51:17 +0100 Subject: [PATCH] MON-79 remove useless client_name variable --- cloud/azure/storage/README.md | 2 -- cloud/azure/storage/inputs.tf | 4 ---- 2 files changed, 6 deletions(-) diff --git a/cloud/azure/storage/README.md b/cloud/azure/storage/README.md index 417f866..a24bcd8 100644 --- a/cloud/azure/storage/README.md +++ b/cloud/azure/storage/README.md @@ -11,7 +11,6 @@ module "datadog-monitors-azure-storage" { message = "${module.datadog-message-alerting.alerting-message}" environment = "${var.environment}" - client_name = "${var.client_name}" } ``` @@ -34,7 +33,6 @@ Inputs | Name | Description | Type | Default | Required | |------|-------------|:----:|:-----:|:-----:| -| client_name | Client name | string | - | yes | | delay | Delay in seconds for the metric evaluation | string | `600` | no | | environment | Architecture environment | string | - | yes | | message | Message sent when a monitor is triggered | string | - | yes | diff --git a/cloud/azure/storage/inputs.tf b/cloud/azure/storage/inputs.tf index 5f99615..bb21f9a 100644 --- a/cloud/azure/storage/inputs.tf +++ b/cloud/azure/storage/inputs.tf @@ -1,8 +1,4 @@ # Global Terraform -variable "client_name" { - type = "string" -} - variable "environment" { description = "Architecture environment" type = "string"