Skip to content

Latest commit

 

History

History
176 lines (143 loc) · 3.51 KB

oci_kms_encrypted_data.md

File metadata and controls

176 lines (143 loc) · 3.51 KB

oci_kms_encrypted_data

back

Index

Terraform

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

top

Example Usage

module "oci_kms_encrypted_data" {
  source = "./modules/oci/r/oci_kms_encrypted_data"

  # associated_data - (optional) is a type of map of string
  associated_data = {}
  # crypto_endpoint - (required) is a type of string
  crypto_endpoint = null
  # encryption_algorithm - (optional) is a type of string
  encryption_algorithm = null
  # key_id - (required) is a type of string
  key_id = null
  # key_version_id - (optional) is a type of string
  key_version_id = null
  # logging_context - (optional) is a type of map of string
  logging_context = {}
  # plaintext - (required) is a type of string
  plaintext = null

  timeouts = [{
    create = null
    delete = null
    update = null
  }]
}

top

Variables

variable "associated_data" {
  description = "(optional)"
  type        = map(string)
  default     = null
}

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

variable "encryption_algorithm" {
  description = "(optional)"
  type        = string
  default     = null
}

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

variable "key_version_id" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "logging_context" {
  description = "(optional)"
  type        = map(string)
  default     = null
}

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

variable "timeouts" {
  description = "nested block: NestingSingle, min items: 0, max items: 0"
  type = set(object(
    {
      create = string
      delete = string
      update = string
    }
  ))
  default = []
}

top

Resource

resource "oci_kms_encrypted_data" "this" {
  # associated_data - (optional) is a type of map of string
  associated_data = var.associated_data
  # crypto_endpoint - (required) is a type of string
  crypto_endpoint = var.crypto_endpoint
  # encryption_algorithm - (optional) is a type of string
  encryption_algorithm = var.encryption_algorithm
  # key_id - (required) is a type of string
  key_id = var.key_id
  # key_version_id - (optional) is a type of string
  key_version_id = var.key_version_id
  # logging_context - (optional) is a type of map of string
  logging_context = var.logging_context
  # plaintext - (required) is a type of string
  plaintext = var.plaintext

  dynamic "timeouts" {
    for_each = var.timeouts
    content {
      # create - (optional) is a type of string
      create = timeouts.value["create"]
      # delete - (optional) is a type of string
      delete = timeouts.value["delete"]
      # update - (optional) is a type of string
      update = timeouts.value["update"]
    }
  }

}

top

Outputs

output "ciphertext" {
  description = "returns a string"
  value       = oci_kms_encrypted_data.this.ciphertext
}

output "encryption_algorithm" {
  description = "returns a string"
  value       = oci_kms_encrypted_data.this.encryption_algorithm
}

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

output "key_version_id" {
  description = "returns a string"
  value       = oci_kms_encrypted_data.this.key_version_id
}

output "this" {
  value = oci_kms_encrypted_data.this
}

top