oci.Artifacts.ContainerImageSignature
Explore with Pulumi AI
This resource provides the Container Image Signature resource in Oracle Cloud Infrastructure Artifacts service.
Upload a signature to an image.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testContainerImageSignature = new oci.artifacts.ContainerImageSignature("test_container_image_signature", {
compartmentId: compartmentId,
imageId: testImage.id,
kmsKeyId: testKey.id,
kmsKeyVersionId: testKeyVersion.id,
message: containerImageSignatureMessage,
signature: containerImageSignatureSignature,
signingAlgorithm: containerImageSignatureSigningAlgorithm,
definedTags: {
"Operations.CostCenter": "42",
},
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_container_image_signature = oci.artifacts.ContainerImageSignature("test_container_image_signature",
compartment_id=compartment_id,
image_id=test_image["id"],
kms_key_id=test_key["id"],
kms_key_version_id=test_key_version["id"],
message=container_image_signature_message,
signature=container_image_signature_signature,
signing_algorithm=container_image_signature_signing_algorithm,
defined_tags={
"Operations.CostCenter": "42",
},
freeform_tags={
"Department": "Finance",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Artifacts"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Artifacts.NewContainerImageSignature(ctx, "test_container_image_signature", &Artifacts.ContainerImageSignatureArgs{
CompartmentId: pulumi.Any(compartmentId),
ImageId: pulumi.Any(testImage.Id),
KmsKeyId: pulumi.Any(testKey.Id),
KmsKeyVersionId: pulumi.Any(testKeyVersion.Id),
Message: pulumi.Any(containerImageSignatureMessage),
Signature: pulumi.Any(containerImageSignatureSignature),
SigningAlgorithm: pulumi.Any(containerImageSignatureSigningAlgorithm),
DefinedTags: pulumi.Map{
"Operations.CostCenter": pulumi.Any("42"),
},
FreeformTags: pulumi.Map{
"Department": pulumi.Any("Finance"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testContainerImageSignature = new Oci.Artifacts.ContainerImageSignature("test_container_image_signature", new()
{
CompartmentId = compartmentId,
ImageId = testImage.Id,
KmsKeyId = testKey.Id,
KmsKeyVersionId = testKeyVersion.Id,
Message = containerImageSignatureMessage,
Signature = containerImageSignatureSignature,
SigningAlgorithm = containerImageSignatureSigningAlgorithm,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Artifacts.ContainerImageSignature;
import com.pulumi.oci.Artifacts.ContainerImageSignatureArgs;
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 testContainerImageSignature = new ContainerImageSignature("testContainerImageSignature", ContainerImageSignatureArgs.builder()
.compartmentId(compartmentId)
.imageId(testImage.id())
.kmsKeyId(testKey.id())
.kmsKeyVersionId(testKeyVersion.id())
.message(containerImageSignatureMessage)
.signature(containerImageSignatureSignature)
.signingAlgorithm(containerImageSignatureSigningAlgorithm)
.definedTags(Map.of("Operations.CostCenter", "42"))
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testContainerImageSignature:
type: oci:Artifacts:ContainerImageSignature
name: test_container_image_signature
properties:
compartmentId: ${compartmentId}
imageId: ${testImage.id}
kmsKeyId: ${testKey.id}
kmsKeyVersionId: ${testKeyVersion.id}
message: ${containerImageSignatureMessage}
signature: ${containerImageSignatureSignature}
signingAlgorithm: ${containerImageSignatureSigningAlgorithm}
definedTags:
Operations.CostCenter: '42'
freeformTags:
Department: Finance
Create ContainerImageSignature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ContainerImageSignature(name: string, args: ContainerImageSignatureArgs, opts?: CustomResourceOptions);
@overload
def ContainerImageSignature(resource_name: str,
args: ContainerImageSignatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ContainerImageSignature(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
image_id: Optional[str] = None,
kms_key_id: Optional[str] = None,
kms_key_version_id: Optional[str] = None,
message: Optional[str] = None,
signature: Optional[str] = None,
signing_algorithm: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
freeform_tags: Optional[Mapping[str, Any]] = None)
func NewContainerImageSignature(ctx *Context, name string, args ContainerImageSignatureArgs, opts ...ResourceOption) (*ContainerImageSignature, error)
public ContainerImageSignature(string name, ContainerImageSignatureArgs args, CustomResourceOptions? opts = null)
public ContainerImageSignature(String name, ContainerImageSignatureArgs args)
public ContainerImageSignature(String name, ContainerImageSignatureArgs args, CustomResourceOptions options)
type: oci:Artifacts:ContainerImageSignature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ContainerImageSignatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ContainerImageSignatureArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ContainerImageSignatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ContainerImageSignatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ContainerImageSignatureArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var containerImageSignatureResource = new Oci.Artifacts.ContainerImageSignature("containerImageSignatureResource", new()
{
CompartmentId = "string",
ImageId = "string",
KmsKeyId = "string",
KmsKeyVersionId = "string",
Message = "string",
Signature = "string",
SigningAlgorithm = "string",
DefinedTags =
{
{ "string", "any" },
},
FreeformTags =
{
{ "string", "any" },
},
});
example, err := Artifacts.NewContainerImageSignature(ctx, "containerImageSignatureResource", &Artifacts.ContainerImageSignatureArgs{
CompartmentId: pulumi.String("string"),
ImageId: pulumi.String("string"),
KmsKeyId: pulumi.String("string"),
KmsKeyVersionId: pulumi.String("string"),
Message: pulumi.String("string"),
Signature: pulumi.String("string"),
SigningAlgorithm: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
})
var containerImageSignatureResource = new ContainerImageSignature("containerImageSignatureResource", ContainerImageSignatureArgs.builder()
.compartmentId("string")
.imageId("string")
.kmsKeyId("string")
.kmsKeyVersionId("string")
.message("string")
.signature("string")
.signingAlgorithm("string")
.definedTags(Map.of("string", "any"))
.freeformTags(Map.of("string", "any"))
.build());
container_image_signature_resource = oci.artifacts.ContainerImageSignature("containerImageSignatureResource",
compartment_id="string",
image_id="string",
kms_key_id="string",
kms_key_version_id="string",
message="string",
signature="string",
signing_algorithm="string",
defined_tags={
"string": "any",
},
freeform_tags={
"string": "any",
})
const containerImageSignatureResource = new oci.artifacts.ContainerImageSignature("containerImageSignatureResource", {
compartmentId: "string",
imageId: "string",
kmsKeyId: "string",
kmsKeyVersionId: "string",
message: "string",
signature: "string",
signingAlgorithm: "string",
definedTags: {
string: "any",
},
freeformTags: {
string: "any",
},
});
type: oci:Artifacts:ContainerImageSignature
properties:
compartmentId: string
definedTags:
string: any
freeformTags:
string: any
imageId: string
kmsKeyId: string
kmsKeyVersionId: string
message: string
signature: string
signingAlgorithm: string
ContainerImageSignature Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ContainerImageSignature resource accepts the following input properties:
- Compartment
Id string - The OCID of the compartment in which the container repository exists.
- Image
Id string - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- Kms
Key stringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- Kms
Key stringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- Message string
- The base64 encoded signature payload that was signed.
- Signature string
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- Signing
Algorithm string The algorithm to be used for signing. These are the only supported signing algorithms for container images.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Dictionary<string, object>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Compartment
Id string - The OCID of the compartment in which the container repository exists.
- Image
Id string - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- Kms
Key stringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- Kms
Key stringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- Message string
- The base64 encoded signature payload that was signed.
- Signature string
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- Signing
Algorithm string The algorithm to be used for signing. These are the only supported signing algorithms for container images.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- map[string]interface{}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment
Id String - The OCID of the compartment in which the container repository exists.
- image
Id String - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- kms
Key StringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- kms
Key StringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- message String
- The base64 encoded signature payload that was signed.
- signature String
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- signing
Algorithm String The algorithm to be used for signing. These are the only supported signing algorithms for container images.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Map<String,Object>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment
Id string - The OCID of the compartment in which the container repository exists.
- image
Id string - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- kms
Key stringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- kms
Key stringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- message string
- The base64 encoded signature payload that was signed.
- signature string
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- signing
Algorithm string The algorithm to be used for signing. These are the only supported signing algorithms for container images.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- {[key: string]: any}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment_
id str - The OCID of the compartment in which the container repository exists.
- image_
id str - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- kms_
key_ strid - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- kms_
key_ strversion_ id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- message str
- The base64 encoded signature payload that was signed.
- signature str
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- signing_
algorithm str The algorithm to be used for signing. These are the only supported signing algorithms for container images.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Mapping[str, Any]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment
Id String - The OCID of the compartment in which the container repository exists.
- image
Id String - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- kms
Key StringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- kms
Key StringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- message String
- The base64 encoded signature payload that was signed.
- signature String
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- signing
Algorithm String The algorithm to be used for signing. These are the only supported signing algorithms for container images.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Map<Any>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
Outputs
All input properties are implicitly available as output properties. Additionally, the ContainerImageSignature resource produces the following output properties:
- Created
By string - The id of the user or principal that created the resource.
- Display
Name string - The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example:
wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the container image signature.
- Dictionary<string, object>
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - An RFC 3339 timestamp indicating when the image was created.
- Created
By string - The id of the user or principal that created the resource.
- Display
Name string - The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example:
wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the container image signature.
- map[string]interface{}
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - An RFC 3339 timestamp indicating when the image was created.
- created
By String - The id of the user or principal that created the resource.
- display
Name String - The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example:
wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the container image signature.
- Map<String,Object>
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - An RFC 3339 timestamp indicating when the image was created.
- created
By string - The id of the user or principal that created the resource.
- display
Name string - The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example:
wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The current state of the container image signature.
- {[key: string]: any}
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - An RFC 3339 timestamp indicating when the image was created.
- created_
by str - The id of the user or principal that created the resource.
- display_
name str - The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example:
wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The current state of the container image signature.
- Mapping[str, Any]
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - An RFC 3339 timestamp indicating when the image was created.
- created
By String - The id of the user or principal that created the resource.
- display
Name String - The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example:
wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the container image signature.
- Map<Any>
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - An RFC 3339 timestamp indicating when the image was created.
Look up Existing ContainerImageSignature Resource
Get an existing ContainerImageSignature 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?: ContainerImageSignatureState, opts?: CustomResourceOptions): ContainerImageSignature
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
created_by: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
image_id: Optional[str] = None,
kms_key_id: Optional[str] = None,
kms_key_version_id: Optional[str] = None,
message: Optional[str] = None,
signature: Optional[str] = None,
signing_algorithm: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None) -> ContainerImageSignature
func GetContainerImageSignature(ctx *Context, name string, id IDInput, state *ContainerImageSignatureState, opts ...ResourceOption) (*ContainerImageSignature, error)
public static ContainerImageSignature Get(string name, Input<string> id, ContainerImageSignatureState? state, CustomResourceOptions? opts = null)
public static ContainerImageSignature get(String name, Output<String> id, ContainerImageSignatureState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- 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.
- Compartment
Id string - The OCID of the compartment in which the container repository exists.
- Created
By string - The id of the user or principal that created the resource.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string - The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example:
wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- Dictionary<string, object>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Image
Id string - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- Kms
Key stringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- Kms
Key stringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- Message string
- The base64 encoded signature payload that was signed.
- Signature string
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- Signing
Algorithm string The algorithm to be used for signing. These are the only supported signing algorithms for container images.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
- The current state of the container image signature.
- Dictionary<string, object>
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - An RFC 3339 timestamp indicating when the image was created.
- Compartment
Id string - The OCID of the compartment in which the container repository exists.
- Created
By string - The id of the user or principal that created the resource.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string - The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example:
wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- map[string]interface{}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Image
Id string - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- Kms
Key stringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- Kms
Key stringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- Message string
- The base64 encoded signature payload that was signed.
- Signature string
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- Signing
Algorithm string The algorithm to be used for signing. These are the only supported signing algorithms for container images.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
- The current state of the container image signature.
- map[string]interface{}
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - An RFC 3339 timestamp indicating when the image was created.
- compartment
Id String - The OCID of the compartment in which the container repository exists.
- created
By String - The id of the user or principal that created the resource.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String - The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example:
wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- Map<String,Object>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- image
Id String - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- kms
Key StringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- kms
Key StringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- message String
- The base64 encoded signature payload that was signed.
- signature String
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- signing
Algorithm String The algorithm to be used for signing. These are the only supported signing algorithms for container images.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
- The current state of the container image signature.
- Map<String,Object>
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - An RFC 3339 timestamp indicating when the image was created.
- compartment
Id string - The OCID of the compartment in which the container repository exists.
- created
By string - The id of the user or principal that created the resource.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name string - The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example:
wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- {[key: string]: any}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- image
Id string - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- kms
Key stringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- kms
Key stringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- message string
- The base64 encoded signature payload that was signed.
- signature string
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- signing
Algorithm string The algorithm to be used for signing. These are the only supported signing algorithms for container images.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state string
- The current state of the container image signature.
- {[key: string]: any}
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - An RFC 3339 timestamp indicating when the image was created.
- compartment_
id str - The OCID of the compartment in which the container repository exists.
- created_
by str - The id of the user or principal that created the resource.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display_
name str - The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example:
wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- Mapping[str, Any]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- image_
id str - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- kms_
key_ strid - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- kms_
key_ strversion_ id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- message str
- The base64 encoded signature payload that was signed.
- signature str
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- signing_
algorithm str The algorithm to be used for signing. These are the only supported signing algorithms for container images.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state str
- The current state of the container image signature.
- Mapping[str, Any]
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - An RFC 3339 timestamp indicating when the image was created.
- compartment
Id String - The OCID of the compartment in which the container repository exists.
- created
By String - The id of the user or principal that created the resource.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String - The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example:
wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva
- Map<Any>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- image
Id String - The OCID of the container image. Example:
ocid1.containerimage.oc1..exampleuniqueID
- kms
Key StringId - The OCID of the kmsKeyId used to sign the container image. Example:
ocid1.key.oc1..exampleuniqueID
- kms
Key StringVersion Id - The OCID of the kmsKeyVersionId used to sign the container image. Example:
ocid1.keyversion.oc1..exampleuniqueID
- message String
- The base64 encoded signature payload that was signed.
- signature String
- The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.
- signing
Algorithm String The algorithm to be used for signing. These are the only supported signing algorithms for container images.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
- The current state of the container image signature.
- Map<Any>
- The system tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - An RFC 3339 timestamp indicating when the image was created.
Import
ContainerImageSignatures can be imported using the id
, e.g.
$ pulumi import oci:Artifacts/containerImageSignature:ContainerImageSignature test_container_image_signature "container/imageSignatures/{imageSignatureId}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.