Resource: aws_appstream_user

Provides an AppStream user.

Example Usage

resource "aws_appstream_user" "example" {
  authentication_type = "USERPOOL"
  user_name           = "EMAIL"
  first_name          = "FIRST NAME"
  last_name           = "LAST NAME"
}

Argument Reference

The following arguments are required:

The following arguments are optional:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import aws_appstream_user using the user_name and authentication_type separated by a slash (/). For example:

import {
  to = aws_appstream_user.example
  id = "UserName/AuthenticationType"
}

Using terraform import, import aws_appstream_user using the user_name and authentication_type separated by a slash (/). For example:

% terraform import aws_appstream_user.example UserName/AuthenticationType