SigningProfile

class SigningProfile : KotlinCustomResource

Creates a Signer Signing Profile. A signing profile contains information about the code signing configuration parameters that can be used by a given code signing user.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.signer.SigningProfile;
import com.pulumi.aws.signer.SigningProfileArgs;
import com.pulumi.aws.signer.inputs.SigningProfileSignatureValidityPeriodArgs;
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 testSp = new SigningProfile("testSp", SigningProfileArgs.builder()
.platformId("AWSLambda-SHA384-ECDSA")
.build());
var prodSp = new SigningProfile("prodSp", SigningProfileArgs.builder()
.namePrefix("prod_sp_")
.platformId("AWSLambda-SHA384-ECDSA")
.signatureValidityPeriod(SigningProfileSignatureValidityPeriodArgs.builder()
.type("YEARS")
.value(5)
.build())
.tags(Map.ofEntries(
Map.entry("tag1", "value1"),
Map.entry("tag2", "value2")
))
.build());
}
}

Import

Signer signing profiles can be imported using the name, e.g.,

$ pulumi import aws:signer/signingProfile:SigningProfile test_signer_signing_profile test_sp_DdW3Mk1foYL88fajut4mTVFGpuwfd4ACO6ANL0D1uIj7lrn8adK

Properties

Link copied to clipboard
val arn: Output<String>

The Amazon Resource Name (ARN) for the signing profile.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.

Link copied to clipboard
val namePrefix: Output<String>?

A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.

Link copied to clipboard

A human-readable name for the signing platform associated with the signing profile.

Link copied to clipboard
val platformId: Output<String>

The ID of the platform that is used by the target signing profile.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Revocation information for a signing profile.

Link copied to clipboard

The validity period for a signing job.

Link copied to clipboard
val status: Output<String>

The status of the target signing profile.

Link copied to clipboard
val tags: Output<Map<String, String>>?

A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val version: Output<String>

The current version of the signing profile.

Link copied to clipboard
val versionArn: Output<String>

The signing profile ARN, including the profile version.