diff --git a/object.tf b/object.tf index a0c1841..0ddb476 100644 --- a/object.tf +++ b/object.tf @@ -1,10 +1,10 @@ resource "openstack_objectstorage_container_v1" "tf_container" { - name = "tofu-test-container" + name = "tofu-test-container" } resource "openstack_objectstorage_object_v1" "tofu_object" { container_name = openstack_objectstorage_container_v1.tf_container.name name = "tofu-test-directory/object.file" - content = "tofu test file" + content = "tofu test file" }