Files
terraform-talos/oracle/images/bucket.tf
2021-12-23 09:34:44 +02:00

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"
}