PublicKey
Example Usage
using System.IO;
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var example = new Aws.CloudFront.PublicKey("example", new Aws.CloudFront.PublicKeyArgs
{
Comment = "test public key",
EncodedKey = File.ReadAllText("public_key.pem"),
});
}
}
Coming soon!
import pulumi
import pulumi_aws as aws
example = aws.cloudfront.PublicKey("example",
comment="test public key",
encoded_key=(lambda path: open(path).read())("public_key.pem"))import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
import * as fs from "fs";
const example = new aws.cloudfront.PublicKey("example", {
comment: "test public key",
encodedKey: fs.readFileSync("public_key.pem", "utf-8"),
});Create a PublicKey Resource
new PublicKey(name: string, args: PublicKeyArgs, opts?: CustomResourceOptions);def PublicKey(resource_name, opts=None, comment=None, encoded_key=None, name=None, name_prefix=None, __props__=None);func NewPublicKey(ctx *Context, name string, args PublicKeyArgs, opts ...ResourceOption) (*PublicKey, error)public PublicKey(string name, PublicKeyArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args PublicKeyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args PublicKeyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PublicKeyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
PublicKey Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The PublicKey resource accepts the following input properties:
- Encoded
Key string The encoded public key that you want to add to CloudFront to use with features like field-level encryption.
- Comment string
An optional comment about the public key.
- Name string
The name for the public key. By default generated by this provider.
- Name
Prefix string The name for the public key. Conflicts with
name.
- Encoded
Key string The encoded public key that you want to add to CloudFront to use with features like field-level encryption.
- Comment string
An optional comment about the public key.
- Name string
The name for the public key. By default generated by this provider.
- Name
Prefix string The name for the public key. Conflicts with
name.
- encoded
Key string The encoded public key that you want to add to CloudFront to use with features like field-level encryption.
- comment string
An optional comment about the public key.
- name string
The name for the public key. By default generated by this provider.
- name
Prefix string The name for the public key. Conflicts with
name.
- encoded_
key str The encoded public key that you want to add to CloudFront to use with features like field-level encryption.
- comment str
An optional comment about the public key.
- name str
The name for the public key. By default generated by this provider.
- name_
prefix str The name for the public key. Conflicts with
name.
Outputs
All input properties are implicitly available as output properties. Additionally, the PublicKey resource produces the following output properties:
Look up an Existing PublicKey Resource
Get an existing PublicKey resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: PublicKeyState, opts?: CustomResourceOptions): PublicKeystatic get(resource_name, id, opts=None, caller_reference=None, comment=None, encoded_key=None, etag=None, name=None, name_prefix=None, __props__=None);func GetPublicKey(ctx *Context, name string, id IDInput, state *PublicKeyState, opts ...ResourceOption) (*PublicKey, error)public static PublicKey Get(string name, Input<string> id, PublicKeyState? state, CustomResourceOptions? opts = null)- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
The following state arguments are supported:
- Caller
Reference string Internal value used by CloudFront to allow future updates to the public key configuration.
- Comment string
An optional comment about the public key.
- Encoded
Key string The encoded public key that you want to add to CloudFront to use with features like field-level encryption.
- Etag string
The current version of the public key. For example:
E2QWRUHAPOMQZL.- Name string
The name for the public key. By default generated by this provider.
- Name
Prefix string The name for the public key. Conflicts with
name.
- Caller
Reference string Internal value used by CloudFront to allow future updates to the public key configuration.
- Comment string
An optional comment about the public key.
- Encoded
Key string The encoded public key that you want to add to CloudFront to use with features like field-level encryption.
- Etag string
The current version of the public key. For example:
E2QWRUHAPOMQZL.- Name string
The name for the public key. By default generated by this provider.
- Name
Prefix string The name for the public key. Conflicts with
name.
- caller
Reference string Internal value used by CloudFront to allow future updates to the public key configuration.
- comment string
An optional comment about the public key.
- encoded
Key string The encoded public key that you want to add to CloudFront to use with features like field-level encryption.
- etag string
The current version of the public key. For example:
E2QWRUHAPOMQZL.- name string
The name for the public key. By default generated by this provider.
- name
Prefix string The name for the public key. Conflicts with
name.
- caller_
reference str Internal value used by CloudFront to allow future updates to the public key configuration.
- comment str
An optional comment about the public key.
- encoded_
key str The encoded public key that you want to add to CloudFront to use with features like field-level encryption.
- etag str
The current version of the public key. For example:
E2QWRUHAPOMQZL.- name str
The name for the public key. By default generated by this provider.
- name_
prefix str The name for the public key. Conflicts with
name.
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.