» Resource: aws_worklink_fleet
» Example Usage
Basic usage:
resource "aws_worklink_fleet" "example" {
name = "terraform-example"
}
Network Configuration Usage:
resource "aws_worklink_fleet" "example" {
name = "terraform-example"
network {
vpc_id = "${aws_vpc.test.id}"
subnet_ids = ["${aws_subnet.test.*.id}"]
security_group_ids = ["${aws_security_group.test.id}"]
}
}
Identity Provider Configuration Usage:
resource "aws_worklink_fleet" "test" {
name = "tf-worklink-fleet-%s"
identity_provider {
type = "SAML"
saml_metadata = "${file("saml-metadata.xml")}"
}
}
» Argument Reference
The following arguments are supported:
-
name- (Required) A region-unique name for the AMI. -
audit_stream_arn- (Optional) The ARN of the Amazon Kinesis data stream that receives the audit events. -
device_ca_certificate- (Optional) The certificate chain, including intermediate certificates and the root certificate authority certificate used to issue device certificates. -
identity_provider- (Optional) Provide this to allow manage the identity provider configuration for the fleet. Fields documented below. -
display_name- (Optional) The name of the fleet. -
network- (Optional) Provide this to allow manage the company network configuration for the fleet. Fields documented below. -
optimize_for_end_user_location- (Optional) The option to optimize for better performance by routing traffic through the closest AWS Region to users, which may be outside of your home Region. Defaults totrue.
network requires the following:
NOTE: network is cannot removed without forece recreating by terraform taint.
-
vpc_id- (Required) The VPC ID with connectivity to associated websites. -
subnet_ids- (Required) A list of subnet IDs used for X-ENI connections from Amazon WorkLink rendering containers. -
security_group_ids- (Required) A list of security group IDs associated with access to the provided subnets.
identity_provider requires the following:
NOTE: identity_provider is cannot removed without forece recreating by terraform taint.
-
type- (Required) The type of identity provider. -
saml_metadata- (Required) The SAML metadata document provided by the customer’s identity provider.
» Attributes Reference
In addition to all arguments above, the following attributes are exported:
-
id- The ARN of the created WorkLink Fleet. -
arn- The ARN of the created WorkLink Fleet. -
company_code- The identifier used by users to sign in to the Amazon WorkLink app. -
created_time- The time that the fleet was created. -
last_updated_time- The time that the fleet was last updated.
» Import
WorkLink can be imported using the ARN, e.g.
$ terraform import aws_worklink_fleet.test arn:aws:worklink::123456789012:fleet/example