alicloud_alikafka_sasl_user
更新时间:
Provides an Alikafka Sasl User resource.
-> NOTE: Available since v1.66.0.
-> NOTE:  Only the following regions support create alikafka Sasl User.
[cn-hangzhou,cn-beijing,cn-shenzhen,cn-shanghai,cn-qingdao,cn-hongkong,cn-huhehaote,cn-zhangjiakou,cn-chengdu,cn-heyuan,ap-southeast-1,ap-southeast-3,ap-southeast-5,ap-northeast-1,eu-central-1,eu-west-1,us-west-1,us-east-1]
For information about Alikafka Sasl User and how to use it, see What is Sasl User.
Example Usage
Basic Usage
variable "name" {
  default = "tf-example"
}
data "alicloud_zones" "default" {
  available_resource_creation = "VSwitch"
}
resource "alicloud_vpc" "default" {
  vpc_name   = var.name
  cidr_block = "10.4.0.0/16"
}
resource "alicloud_vswitch" "default" {
  vswitch_name = var.name
  cidr_block   = "10.4.0.0/24"
  vpc_id       = alicloud_vpc.default.id
  zone_id      = data.alicloud_zones.default.zones.0.id
}
resource "alicloud_security_group" "default" {
  vpc_id = alicloud_vpc.default.id
}
resource "random_integer" "default" {
  min = 10000
  max = 99999
}
resource "alicloud_alikafka_instance" "default" {
  name            = "${var.name}-${random_integer.default.result}"
  partition_num   = 50
  disk_type       = "1"
  disk_size       = "500"
  deploy_type     = "5"
  io_max          = "20"
  spec_type       = "professional"
  service_version = "2.2.0"
  vswitch_id      = alicloud_vswitch.default.id
  security_group  = alicloud_security_group.default.id
  config          = <<EOF
  {
    "enable.acl": "true"
  }
  EOF
}
resource "alicloud_alikafka_sasl_user" "default" {
  instance_id = alicloud_alikafka_instance.default.id
  username    = var.name
  password    = "tf_example123"
}
Argument Reference
The following arguments are supported:
instance_id- (Required, ForceNew) ID of the ALIKAFKA Instance that owns the groups.username- (Required, ForceNew) The name of the SASL user. The length should between1to64characters. The characters can only containa-z,A-Z,0-9,_and-.type- (Optional, ForceNew, Available since v1.159.0) The authentication mechanism. Default value:plain. Valid values:plain,scram.password- (Optional, Sensitive) The password of the SASL user. It may consist of letters, digits, or underlines, with a length of 1 to 64 characters. You have to specify one ofpasswordandkms_encrypted_passwordfields.kms_encrypted_password- (Optional) An KMS encrypts password used to a db account. You have to specify one ofpasswordandkms_encrypted_passwordfields.kms_encryption_context- (Optional, MapString) An KMS encryption context used to decryptkms_encrypted_passwordbefore creating or updating a user withkms_encrypted_password. See Encryption Context. It is valid whenkms_encrypted_passwordis set.
Attributes Reference
The following attributes are exported:
id- The resource ID in terraform of Sasl User. It formats as<instance_id>:<username>.
Import
Alikafka Sasl User can be imported using the id, e.g.
terraform import alicloud_alikafka_sasl_user.example <instance_id>:<username>
该文章对您有帮助吗?