You must be logged in to view saved presets
Creates a configuration for an AWS AppStream directory with specified directory name, organizational unit distinguished names, and service account credentials.
resource "aws_appstream_directory_config" "example" {
directory_name = "NAME OF DIRECTORY"
organizational_unit_distinguished_names = ["DISTINGUISHED NAME"]
service_account_credentials {
account_name = "NAME OF ACCOUNT"
account_password = "PASSWORD OF ACCOUNT"
}
}