Skip to content

Latest commit

 

History

History
125 lines (96 loc) · 2.31 KB

oci_objectstorage_preauthrequest.md

File metadata and controls

125 lines (96 loc) · 2.31 KB

oci_objectstorage_preauthrequest

back

Index

Terraform

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

top

Example Usage

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

  # bucket - (required) is a type of string
  bucket = null
  # namespace - (required) is a type of string
  namespace = null
  # par_id - (required) is a type of string
  par_id = null
}

top

Variables

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

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

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

top

Datasource

data "oci_objectstorage_preauthrequest" "this" {
  # bucket - (required) is a type of string
  bucket = var.bucket
  # namespace - (required) is a type of string
  namespace = var.namespace
  # par_id - (required) is a type of string
  par_id = var.par_id
}

top

Outputs

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

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

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

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

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

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

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

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

output "this" {
  value = oci_objectstorage_preauthrequest.this
}

top