Skip to content

Latest commit

 

History

History
112 lines (84 loc) · 1.83 KB

oci_limits_quota.md

File metadata and controls

112 lines (84 loc) · 1.83 KB

oci_limits_quota

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Datasource

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

top

Outputs

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

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

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

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

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

output "name" {
  description = "returns a string"
  value       = data.oci_limits_quota.this.name
}

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

output "statements" {
  description = "returns a list of string"
  value       = data.oci_limits_quota.this.statements
}

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

output "this" {
  value = oci_limits_quota.this
}

top