Open
Description
What new functionality are you requesting?
resource "aws_appstream_fleet_status"
Description
Appstream fleets are initially created in the STOPPED state. Akin to the resource aws_ec2_instance_state
there should be a resource to control the fleet status.
Basically it would be helpful to auto-start the fleet once other resources are configured.
Potential Terraform Configuration
resource "aws_appstream_fleet_status" "status" {
fleet_name = "foobar"
status = "STARTED" # or "STOPPED"
depends_on = ["other_resource"]
}
References
No response
Would you like to implement the enhancement?
No