mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-11-01 18:58:39 +00:00
13 lines
332 B
HCL
13 lines
332 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 = "talos-images-${random_id.backet.hex}"
|
|
access_type = "NoPublicAccess"
|
|
auto_tiering = "Disabled"
|
|
}
|