Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ variable "tag_namespace" {
}
variable "bucket_namespace" {
}
variable "queue_visibility_in_seconds" {
default = 15*60 # defaults to 15 minutes
}

provider "oci" {
region = var.oracle_region
tenancy_ocid = var.tenancy_ocid
Expand Down Expand Up @@ -54,4 +58,7 @@ resource "oci_queue_queue" "queue" {
#Optional
defined_tags = local.common_tags

dead_letter_queue_delivery_count = 3
visibility_in_seconds = var.queue_visibility_in_seconds

}