Trust Store Revocation Args
data class TrustStoreRevocationArgs(val revocationsS3Bucket: Output<String>? = null, val revocationsS3Key: Output<String>? = null, val revocationsS3ObjectVersion: Output<String>? = null, val trustStoreArn: Output<String>? = null) : ConvertibleToJava<TrustStoreRevocationArgs>
Provides a ELBv2 Trust Store Revocation for use with Application Load Balancer Listener resources.
Example Usage
Trust Store With Revocations
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.lb.TrustStore("test", {
name: "tf-example-lb-ts",
caCertificatesBundleS3Bucket: "...",
caCertificatesBundleS3Key: "...",
});
const testTrustStoreRevocation = new aws.lb.TrustStoreRevocation("test", {
trustStoreArn: test.arn,
revocationsS3Bucket: "...",
revocationsS3Key: "...",
});
Content copied to clipboard
import pulumi
import pulumi_aws as aws
test = aws.lb.TrustStore("test",
name="tf-example-lb-ts",
ca_certificates_bundle_s3_bucket="...",
ca_certificates_bundle_s3_key="...")
test_trust_store_revocation = aws.lb.TrustStoreRevocation("test",
trust_store_arn=test.arn,
revocations_s3_bucket="...",
revocations_s3_key="...")
Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var test = new Aws.LB.TrustStore("test", new()
{
Name = "tf-example-lb-ts",
CaCertificatesBundleS3Bucket = "...",
CaCertificatesBundleS3Key = "...",
});
var testTrustStoreRevocation = new Aws.LB.TrustStoreRevocation("test", new()
{
TrustStoreArn = test.Arn,
RevocationsS3Bucket = "...",
RevocationsS3Key = "...",
});
});
Content copied to clipboard
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
test, err := lb.NewTrustStore(ctx, "test", &lb.TrustStoreArgs{
Name: pulumi.String("tf-example-lb-ts"),
CaCertificatesBundleS3Bucket: pulumi.String("..."),
CaCertificatesBundleS3Key: pulumi.String("..."),
})
if err != nil {
return err
}
_, err = lb.NewTrustStoreRevocation(ctx, "test", &lb.TrustStoreRevocationArgs{
TrustStoreArn: test.Arn,
RevocationsS3Bucket: pulumi.String("..."),
RevocationsS3Key: pulumi.String("..."),
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.lb.TrustStore;
import com.pulumi.aws.lb.TrustStoreArgs;
import com.pulumi.aws.lb.TrustStoreRevocation;
import com.pulumi.aws.lb.TrustStoreRevocationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new TrustStore("test", TrustStoreArgs.builder()
.name("tf-example-lb-ts")
.caCertificatesBundleS3Bucket("...")
.caCertificatesBundleS3Key("...")
.build());
var testTrustStoreRevocation = new TrustStoreRevocation("testTrustStoreRevocation", TrustStoreRevocationArgs.builder()
.trustStoreArn(test.arn())
.revocationsS3Bucket("...")
.revocationsS3Key("...")
.build());
}
}
Content copied to clipboard
resources:
test:
type: aws:lb:TrustStore
properties:
name: tf-example-lb-ts
caCertificatesBundleS3Bucket: '...'
caCertificatesBundleS3Key: '...'
testTrustStoreRevocation:
type: aws:lb:TrustStoreRevocation
name: test
properties:
trustStoreArn: ${test.arn}
revocationsS3Bucket: '...'
revocationsS3Key: '...'
Content copied to clipboard
Import
Using pulumi import
, import Trust Store Revocations using their ARN. For example:
$ pulumi import aws:lb/trustStoreRevocation:TrustStoreRevocation example arn:aws:elasticloadbalancing:us-west-2:187416307283:truststore/my-trust-store/20cfe21448b66314,6
Content copied to clipboard
Properties
Link copied to clipboard
S3 Bucket name holding the client certificate CA bundle.
Link copied to clipboard
S3 object key holding the client certificate CA bundle.
Link copied to clipboard
Version Id of CA bundle S3 bucket object, if versioned, defaults to latest if omitted.
Link copied to clipboard
Trust Store ARN.