Skip to content

Latest commit

 

History

History
92 lines (68 loc) · 1.44 KB

launchdarkly_team_member.md

File metadata and controls

92 lines (68 loc) · 1.44 KB

launchdarkly_team_member

back

Index

Terraform

terraform {
  required_providers {
    launchdarkly = ">= 1.5.1"
  }
}

top

Example Usage

module "launchdarkly_team_member" {
  source = "./modules/launchdarkly/d/launchdarkly_team_member"

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

top

Variables

variable "email" {
  description = "(required)"
  type        = string
}

top

Datasource

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

top

Outputs

output "custom_roles" {
  description = "returns a set of string"
  value       = data.launchdarkly_team_member.this.custom_roles
}

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

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

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

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

output "this" {
  value = launchdarkly_team_member.this
}

top