Skip to content

Latest commit

 

History

History
98 lines (73 loc) · 1.49 KB

File metadata and controls

98 lines (73 loc) · 1.49 KB

circonus_collector

back

Index

Terraform

terraform {
  required_providers {
    circonus = ">= 0.12.0"
  }
}

top

Example Usage

module "circonus_collector" {
  source = "./modules/circonus/d/circonus_collector"

  # tags - (optional) is a type of set of string
  tags = []
}

top

Variables

variable "tags" {
  description = "(optional)"
  type        = set(string)
  default     = null
}

top

Datasource

data "circonus_collector" "this" {
  # tags - (optional) is a type of set of string
  tags = var.tags
}

top

Outputs

output "details" {
  description = "returns a list of object"
  value       = data.circonus_collector.this.details
}

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

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

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

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

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

output "this" {
  value = circonus_collector.this
}

top