mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-11-01 18:58:39 +00:00
14 lines
355 B
HCL
14 lines
355 B
HCL
|
|
resource "random_id" "backet" {
|
|
byte_length = 8
|
|
}
|
|
|
|
resource "oci_objectstorage_bucket" "images" {
|
|
compartment_id = var.compartment_ocid
|
|
namespace = data.oci_objectstorage_namespace.ns.namespace
|
|
name = "images-${random_id.backet.hex}"
|
|
access_type = "NoPublicAccess"
|
|
auto_tiering = "Disabled"
|
|
versioning = "Enabled"
|
|
}
|