PublicKey

class PublicKey : KotlinCustomResource

Example Usage

The following example below creates a CloudFront public key.

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.cloudfront.PublicKey;
import com.pulumi.aws.cloudfront.PublicKeyArgs;
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 example = new PublicKey("example", PublicKeyArgs.builder()
.comment("test public key")
.encodedKey(Files.readString(Paths.get("public_key.pem")))
.build());
}
}

Import

CloudFront Public Key can be imported using the id, e.g.,

$ pulumi import aws:cloudfront/publicKey:PublicKey example K3D5EWEUDCCXON

Properties

Link copied to clipboard
val callerReference: Output<String>

Internal value used by CloudFront to allow future updates to the public key configuration.

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

An optional comment about the public key.

Link copied to clipboard
val encodedKey: Output<String>

The encoded public key that you want to add to CloudFront to use with features like field-level encryption.

Link copied to clipboard
val etag: Output<String>

The current version of the public key. For example: E2QWRUHAPOMQZL.

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

The name for the public key. By default generated by this provider.

Link copied to clipboard
val namePrefix: Output<String>

The name for the public key. Conflicts with name. NOTE: When setting encoded_key value, there needs a newline at the end of string. Otherwise, multiple runs of pulumi will want to recreate the aws.cloudfront.PublicKey resource.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>