back
terraform {
required_providers {
launchdarkly = ">= 1.5.1"
}
}
top
module "launchdarkly_segment" {
source = "./modules/launchdarkly/r/launchdarkly_segment"
# description - (optional) is a type of string
description = null
# env_key - (required) is a type of string
env_key = null
# excluded - (optional) is a type of list of string
excluded = []
# included - (optional) is a type of list of string
included = []
# key - (required) is a type of string
key = null
# name - (required) is a type of string
name = null
# project_key - (required) is a type of string
project_key = null
# tags - (optional) is a type of set of string
tags = []
rules = [{
bucket_by = null
clauses = [{
attribute = null
negate = null
op = null
value_type = null
values = []
}]
weight = null
}]
}
top
variable "description" {
description = "(optional)"
type = string
default = null
}
variable "env_key" {
description = "(required)"
type = string
}
variable "excluded" {
description = "(optional)"
type = list(string)
default = null
}
variable "included" {
description = "(optional)"
type = list(string)
default = null
}
variable "key" {
description = "(required)"
type = string
}
variable "name" {
description = "(required)"
type = string
}
variable "project_key" {
description = "(required)"
type = string
}
variable "tags" {
description = "(optional)"
type = set(string)
default = null
}
variable "rules" {
description = "nested block: NestingList, min items: 0, max items: 0"
type = set(object(
{
bucket_by = string
clauses = list(object(
{
attribute = string
negate = bool
op = string
value_type = string
values = list(string)
}
))
weight = number
}
))
default = []
}
top
resource "launchdarkly_segment" "this" {
# description - (optional) is a type of string
description = var.description
# env_key - (required) is a type of string
env_key = var.env_key
# excluded - (optional) is a type of list of string
excluded = var.excluded
# included - (optional) is a type of list of string
included = var.included
# key - (required) is a type of string
key = var.key
# name - (required) is a type of string
name = var.name
# project_key - (required) is a type of string
project_key = var.project_key
# tags - (optional) is a type of set of string
tags = var.tags
dynamic "rules" {
for_each = var.rules
content {
# bucket_by - (optional) is a type of string
bucket_by = rules.value["bucket_by"]
# weight - (optional) is a type of number
weight = rules.value["weight"]
dynamic "clauses" {
for_each = rules.value.clauses
content {
# attribute - (required) is a type of string
attribute = clauses.value["attribute"]
# negate - (required) is a type of bool
negate = clauses.value["negate"]
# op - (required) is a type of string
op = clauses.value["op"]
# value_type - (optional) is a type of string
value_type = clauses.value["value_type"]
# values - (required) is a type of list of string
values = clauses.value["values"]
}
}
}
}
}
top
output "id" {
description = "returns a string"
value = launchdarkly_segment.this.id
}
output "this" {
value = launchdarkly_segment.this
}
top