Terraform appstream provider
$ go build -o terraform-provider-appstream
$ terraform init
$ terraform plan
$ terraform apply
This project references some underlying functions from terraform-provider-aws, which subsequently uses Go Modules
AWS Authentication is supported via static credentials or via shared credentials file
- Set static credentials
provider "appstream" {
access_key = "${var.access_key}",
secret_key = "${var.secret_key}",
region = "${var.region}",
token = "${var.token}",
}
- Set the profile to use via shared credentials file
provider "appstream" {
region = var.aws_region
profile = var.aws_profile[terraform.workspace]
version = "~> 2.0"
}