Skip to content

Latest commit

 

History

History
92 lines (68 loc) · 1.6 KB

newrelic_synthetics_monitor_location.md

File metadata and controls

92 lines (68 loc) · 1.6 KB

newrelic_synthetics_monitor_location

back

Index

Terraform

terraform {
  required_providers {
    newrelic = ">= 2.21.0"
  }
}

top

Example Usage

module "newrelic_synthetics_monitor_location" {
  source = "./modules/newrelic/d/newrelic_synthetics_monitor_location"

  # label - (required) is a type of string
  label = null
}

top

Variables

variable "label" {
  description = "(required) - The label of the Synthetics monitor location."
  type        = string
}

top

Datasource

data "newrelic_synthetics_monitor_location" "this" {
  # label - (required) is a type of string
  label = var.label
}

top

Outputs

output "description" {
  description = "returns a string"
  value       = data.newrelic_synthetics_monitor_location.this.description
}

output "high_security_mode" {
  description = "returns a bool"
  value       = data.newrelic_synthetics_monitor_location.this.high_security_mode
}

output "id" {
  description = "returns a string"
  value       = data.newrelic_synthetics_monitor_location.this.id
}

output "name" {
  description = "returns a string"
  value       = data.newrelic_synthetics_monitor_location.this.name
}

output "private" {
  description = "returns a bool"
  value       = data.newrelic_synthetics_monitor_location.this.private
}

output "this" {
  value = newrelic_synthetics_monitor_location.this
}

top