Resource: aws_lb_trust_store_revocation

Provides a ELBv2 Trust Store Revocation for use with Application Load Balancer Listener resources.

Example Usage

Trust Store With Revocations

resource "aws_lb_trust_store" "test" {
  name = "tf-example-lb-ts"

  ca_certificates_bundle_s3_bucket = "..."
  ca_certificates_bundle_s3_key    = "..."

}

resource "aws_lb_trust_store_revocation" "test" {
  trust_store_arn = aws_lb_trust_store.test.arn

  revocations_s3_bucket = "..."
  revocations_s3_key    = "..."

}

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 Trust Store Revocations using their ARN. For example:

import {
  to = aws_lb_trust_store_revocation.example
  id = "arn:aws:elasticloadbalancing:us-west-2:187416307283:truststore/my-trust-store/20cfe21448b66314,6"
}

Using terraform import, import Trust Store Revocations using their ARN. For example:

% terraform import aws_lb_trust_store_revocation.example arn:aws:elasticloadbalancing:us-west-2:187416307283:truststore/my-trust-store/20cfe21448b66314,6