Resource: aws_worklink_website_certificate_authority_association

Example Usage

resource "aws_worklink_fleet" "example" {
  name = "terraform-example"
}

resource "aws_worklink_website_certificate_authority_association" "test" {
  fleet_arn   = aws_worklink_fleet.test.arn
  certificate = file("certificate.pem")
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import WorkLink Website Certificate Authority using FLEET-ARN,WEBSITE-CA-ID. For example:

import {
  to = aws_worklink_website_certificate_authority_association.example
  id = "arn:aws:worklink::123456789012:fleet/example,abcdefghijk"
}

Using terraform import, import WorkLink Website Certificate Authority using FLEET-ARN,WEBSITE-CA-ID. For example:

% terraform import aws_worklink_website_certificate_authority_association.example arn:aws:worklink::123456789012:fleet/example,abcdefghijk