Skip to content

Latest commit

 

History

History
117 lines (88 loc) · 2.11 KB

oci_database_key_store.md

File metadata and controls

117 lines (88 loc) · 2.11 KB

oci_database_key_store

back

Index

Terraform

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

top

Example Usage

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

  # key_store_id - (required) is a type of string
  key_store_id = null
}

top

Variables

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

top

Datasource

data "oci_database_key_store" "this" {
  # key_store_id - (required) is a type of string
  key_store_id = var.key_store_id
}

top

Outputs

output "associated_databases" {
  description = "returns a list of object"
  value       = data.oci_database_key_store.this.associated_databases
}

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

output "defined_tags" {
  description = "returns a map of string"
  value       = data.oci_database_key_store.this.defined_tags
}

output "display_name" {
  description = "returns a string"
  value       = data.oci_database_key_store.this.display_name
}

output "freeform_tags" {
  description = "returns a map of string"
  value       = data.oci_database_key_store.this.freeform_tags
}

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

output "lifecycle_details" {
  description = "returns a string"
  value       = data.oci_database_key_store.this.lifecycle_details
}

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

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

output "type_details" {
  description = "returns a list of object"
  value       = data.oci_database_key_store.this.type_details
}

output "this" {
  value = oci_database_key_store.this
}

top