Creates an AWS AppStream image builder with specified attributes including VPC configuration and tags.

Terraform Template

resource "aws_appstream_image_builder" "test_fleet" {
  description = "Description of a ImageBuilder"
  display_name = "Display name of a ImageBuilder"
  enable_default_internet_access = false
  image_name = "AppStream-WinServer2019-10-05-2022"
  instance_type = "stream.standard.large"
  name = "Name"

  tags = {
    Name = "Example Image Builder"
  }

  vpc_config {
    subnet_ids = ["aws_subnet.example.id"]
  }
}