Skip to content

Latest commit

 

History

History
140 lines (108 loc) · 2.66 KB

oci_kms_key_version.md

File metadata and controls

140 lines (108 loc) · 2.66 KB

oci_kms_key_version

back

Index

Terraform

terraform {
  required_providers {
    oci = ">= 4.21.0"
  }
}

top

Example Usage

module "oci_kms_key_version" {
  source = "./modules/oci/d/oci_kms_key_version"

  # key_id - (required) is a type of string
  key_id = null
  # key_version_id - (required) is a type of string
  key_version_id = null
  # management_endpoint - (required) is a type of string
  management_endpoint = null
}

top

Variables

variable "key_id" {
  description = "(required)"
  type        = string
}

variable "key_version_id" {
  description = "(required)"
  type        = string
}

variable "management_endpoint" {
  description = "(required)"
  type        = string
}

top

Datasource

data "oci_kms_key_version" "this" {
  # key_id - (required) is a type of string
  key_id = var.key_id
  # key_version_id - (required) is a type of string
  key_version_id = var.key_version_id
  # management_endpoint - (required) is a type of string
  management_endpoint = var.management_endpoint
}

top

Outputs

output "compartment_id" {
  description = "returns a string"
  value       = data.oci_kms_key_version.this.compartment_id
}

output "id" {
  description = "returns a string"
  value       = data.oci_kms_key_version.this.id
}

output "is_primary" {
  description = "returns a bool"
  value       = data.oci_kms_key_version.this.is_primary
}

output "public_key" {
  description = "returns a string"
  value       = data.oci_kms_key_version.this.public_key
}

output "replica_details" {
  description = "returns a list of object"
  value       = data.oci_kms_key_version.this.replica_details
}

output "restored_from_key_id" {
  description = "returns a string"
  value       = data.oci_kms_key_version.this.restored_from_key_id
}

output "restored_from_key_version_id" {
  description = "returns a string"
  value       = data.oci_kms_key_version.this.restored_from_key_version_id
}

output "state" {
  description = "returns a string"
  value       = data.oci_kms_key_version.this.state
}

output "time_created" {
  description = "returns a string"
  value       = data.oci_kms_key_version.this.time_created
}

output "time_of_deletion" {
  description = "returns a string"
  value       = data.oci_kms_key_version.this.time_of_deletion
}

output "vault_id" {
  description = "returns a string"
  value       = data.oci_kms_key_version.this.vault_id
}

output "this" {
  value = oci_kms_key_version.this
}

top