TrustStore class

Resource for managing an AWS WorkSpaces Web Trust Store.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
import * as std from "@pulumi/std";

const example = new aws.workspacesweb.TrustStore("example", {certificates: [{
    body: std.file({
        input: "certificate.pem",
    }).then(invoke => invoke.result),
}]});
import pulumi
import pulumi_aws as aws
import pulumi_std as std

example = aws.workspacesweb.TrustStore("example", certificates=[{
    "body": std.file(input="certificate.pem").result,
}])
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
using Std = Pulumi.Std;

return await Deployment.RunAsync(() =>
{
    var example = new Aws.WorkSpacesWeb.TrustStore("example", new()
    {
        Certificates = new[]
        {
            new Aws.WorkSpacesWeb.Inputs.TrustStoreCertificateArgs
            {
                Body = Std.File.Invoke(new()
                {
                    Input = "certificate.pem",
                }).Apply(invoke => invoke.Result),
            },
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/workspacesweb"
	"github.com/pulumi/pulumi-std/sdk/go/std"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		invokeFile, err := std.File(ctx, &std.FileArgs{
			Input: "certificate.pem",
		}, nil)
		if err != nil {
			return err
		}
		_, err = workspacesweb.NewTrustStore(ctx, "example", &workspacesweb.TrustStoreArgs{
			Certificates: workspacesweb.TrustStoreCertificateArray{
				&workspacesweb.TrustStoreCertificateArgs{
					Body: pulumi.String(invokeFile.Result),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
pulumi {
  required_providers {
    aws = {
      source = "pulumi/aws"
    }
    std = {
      source = "pulumi/std"
    }
  }
}

resource "aws_workspacesweb_truststore" "example" {
  certificates {
    body = file("certificate.pem")
  }
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.workspacesweb.TrustStore;
import com.pulumi.aws.workspacesweb.TrustStoreArgs;
import com.pulumi.aws.workspacesweb.inputs.TrustStoreCertificateArgs;
import com.pulumi.std.StdFunctions;
import com.pulumi.std.inputs.FileArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 example = new TrustStore("example", TrustStoreArgs.builder()
            .certificates(TrustStoreCertificateArgs.builder()
                .body(StdFunctions.file(FileArgs.builder()
                    .input("certificate.pem")
                    .build()).result())
                .build())
            .build());

    }
}
resources:
  example:
    type: aws:workspacesweb:TrustStore
    properties:
      certificates:
        - body:
            fn::invoke:
              function: std:file
              arguments:
                input: certificate.pem
              return: result

Multiple Certificates

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
import * as std from "@pulumi/std";

const example = new aws.workspacesweb.TrustStore("example", {
    certificates: [
        {
            body: std.file({
                input: "certificate1.pem",
            }).then(invoke => invoke.result),
        },
        {
            body: std.file({
                input: "certificate2.pem",
            }).then(invoke => invoke.result),
        },
    ],
    tags: {
        Name: "example-trust-store",
    },
});
import pulumi
import pulumi_aws as aws
import pulumi_std as std

example = aws.workspacesweb.TrustStore("example",
    certificates=[
        {
            "body": std.file(input="certificate1.pem").result,
        },
        {
            "body": std.file(input="certificate2.pem").result,
        },
    ],
    tags={
        "Name": "example-trust-store",
    })
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
using Std = Pulumi.Std;

return await Deployment.RunAsync(() =>
{
    var example = new Aws.WorkSpacesWeb.TrustStore("example", new()
    {
        Certificates = new[]
        {
            new Aws.WorkSpacesWeb.Inputs.TrustStoreCertificateArgs
            {
                Body = Std.File.Invoke(new()
                {
                    Input = "certificate1.pem",
                }).Apply(invoke => invoke.Result),
            },
            new Aws.WorkSpacesWeb.Inputs.TrustStoreCertificateArgs
            {
                Body = Std.File.Invoke(new()
                {
                    Input = "certificate2.pem",
                }).Apply(invoke => invoke.Result),
            },
        },
        Tags =
        {
            { "Name", "example-trust-store" },
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/workspacesweb"
	"github.com/pulumi/pulumi-std/sdk/go/std"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		invokeFile, err := std.File(ctx, &std.FileArgs{
			Input: "certificate1.pem",
		}, nil)
		if err != nil {
			return err
		}
		invokeFile1, err := std.File(ctx, &std.FileArgs{
			Input: "certificate2.pem",
		}, nil)
		if err != nil {
			return err
		}
		_, err = workspacesweb.NewTrustStore(ctx, "example", &workspacesweb.TrustStoreArgs{
			Certificates: workspacesweb.TrustStoreCertificateArray{
				&workspacesweb.TrustStoreCertificateArgs{
					Body: pulumi.String(invokeFile.Result),
				},
				&workspacesweb.TrustStoreCertificateArgs{
					Body: pulumi.String(invokeFile1.Result),
				},
			},
			Tags: pulumi.StringMap{
				"Name": pulumi.String("example-trust-store"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
pulumi {
  required_providers {
    aws = {
      source = "pulumi/aws"
    }
    std = {
      source = "pulumi/std"
    }
  }
}

resource "aws_workspacesweb_truststore" "example" {
  certificates {
    body = file("certificate1.pem")
  }
  certificates {
    body = file("certificate2.pem")
  }
  tags = {
    "Name" = "example-trust-store"
  }
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.workspacesweb.TrustStore;
import com.pulumi.aws.workspacesweb.TrustStoreArgs;
import com.pulumi.aws.workspacesweb.inputs.TrustStoreCertificateArgs;
import com.pulumi.std.StdFunctions;
import com.pulumi.std.inputs.FileArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 example = new TrustStore("example", TrustStoreArgs.builder()
            .certificates(
                TrustStoreCertificateArgs.builder()
                    .body(StdFunctions.file(FileArgs.builder()
                        .input("certificate1.pem")
                        .build()).result())
                    .build(),
                TrustStoreCertificateArgs.builder()
                    .body(StdFunctions.file(FileArgs.builder()
                        .input("certificate2.pem")
                        .build()).result())
                    .build())
            .tags(Map.of("Name", "example-trust-store"))
            .build());

    }
}
resources:
  example:
    type: aws:workspacesweb:TrustStore
    properties:
      certificates:
        - body:
            fn::invoke:
              function: std:file
              arguments:
                input: certificate1.pem
              return: result
        - body:
            fn::invoke:
              function: std:file
              arguments:
                input: certificate2.pem
              return: result
      tags:
        Name: example-trust-store

Import

Using pulumi import, import WorkSpaces Web Trust Store using the trustStoreArn. For example:

$ pulumi import aws:workspacesweb/trustStore:TrustStore example arn:aws:workspaces-web:us-west-2:123456789012:trustStore/trust_store-id-12345678

Constructors

TrustStore(String name, {TrustStoreArgs? args, CustomResourceOptions? options})
Creates a new TrustStore. name The Pulumi resource name. args Arguments used to configure this TrustStore. The set of arguments for TrustStore. options Resource options controlling this resource's behavior.
TrustStore.reference(String urn)
Creates a typed reference to an existing TrustStore resource.

Properties

associatedPortalArns ↔ Output<List<String>>
List of ARNs of the web portals associated with the trust store.
latefinal
certificates ↔ Output<List<TrustStoreCertificate>?>
Set of certificates to include in the trust store. See Certificate below.
latefinal
childResources Set<Resource>
finalinherited
completionSources Map<String, IOutputCompletionSource>
latefinalinherited
hashCode int
The hash code for this object.
no setterinherited
id ↔ Output<String>
getter/setter pairinherited
isCustom bool
Returns whether this resource is provider-managed.
no setterinherited
isProtected bool
Returns whether this resource is protected from deletion.
no setterinherited
isRemote bool
Whether this resource is registered as remote.
no setterinherited
isResourceReference bool
Whether this instance represents a resource value returned over RPC.
finalinherited
region ↔ Output<String>
Region where this resource will be managed. Defaults to the Region set in the provider configuration.
latefinal
resourceTransforms List<ResourceTransform>
Inherited/explicit async transforms.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
tags ↔ Output<Map<String, String>?>
Map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
latefinal
tagsAll ↔ Output<Map<String, String>>
Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
latefinal
transformations List<ResourceTransformation>
Inherited/explicit legacy transformations.
no setterinherited
trustStoreArn ↔ Output<String>
ARN of the trust store.
latefinal
urn ↔ Output<String>
latefinalinherited

Methods

failId(Object error) → void
Completes this resource ID with an error when registration fails.
inherited
failOutputs(Object error) → void
Completes all output properties with error.
inherited
failUrn(Object error) → void
Completes this resource URN with an error when registration fails.
inherited
getProvider(String moduleMember) → ProviderResource?
Returns provider for moduleMember's package, if configured.
inherited
getResourceName() String
Returns this resource's logical name.
inherited
getResourceType() String
Returns this resource's Pulumi type token.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
registerOutput<T>(String propertyName, {Object? decoder(Object?)?, bool isSecret = false}) → Output<T>
Registers a dynamic output property for this resource.
inherited
resolveId(String? value, {required bool isKnown}) → void
Resolves the provider-assigned ID for this resource.
inherited
resolveOutputs(Struct outputs) → void
Resolves all output properties from a monitor response payload.
inherited
resolveUrn(String value) → void
Resolves this resource's URN once assigned by the engine.
inherited
serializeProperties(Map<String, dynamic> properties) Future<Struct>
Serializes resource properties for RPC transmission.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

get(String name, Input<String> id, {TrustStoreState? state, CustomResourceOptions? options}) TrustStore
Gets an existing TrustStore resource's state with the given name and id.