Skip to content

Latest commit

 

History

History
111 lines (87 loc) · 2.08 KB

alicloud_alikafka_sasl_user.md

File metadata and controls

111 lines (87 loc) · 2.08 KB

alicloud_alikafka_sasl_user

back

Index

Terraform

terraform {
  required_providers {
    alicloud = ">= 1.120.0"
  }
}

top

Example Usage

module "alicloud_alikafka_sasl_user" {
  source = "./modules/alicloud/r/alicloud_alikafka_sasl_user"

  # instance_id - (required) is a type of string
  instance_id = null
  # kms_encrypted_password - (optional) is a type of string
  kms_encrypted_password = null
  # kms_encryption_context - (optional) is a type of map of string
  kms_encryption_context = {}
  # password - (optional) is a type of string
  password = null
  # username - (required) is a type of string
  username = null
}

top

Variables

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

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

variable "kms_encryption_context" {
  description = "(optional)"
  type        = map(string)
  default     = null
}

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

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

top

Resource

resource "alicloud_alikafka_sasl_user" "this" {
  # instance_id - (required) is a type of string
  instance_id = var.instance_id
  # kms_encrypted_password - (optional) is a type of string
  kms_encrypted_password = var.kms_encrypted_password
  # kms_encryption_context - (optional) is a type of map of string
  kms_encryption_context = var.kms_encryption_context
  # password - (optional) is a type of string
  password = var.password
  # username - (required) is a type of string
  username = var.username
}

top

Outputs

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

output "this" {
  value = alicloud_alikafka_sasl_user.this
}

top