Skip to content

Commit

Permalink
Merge pull request #20 from toolforge/T365820
Browse files Browse the repository at this point in the history
T365820
  • Loading branch information
vivian-rook authored Sep 3, 2024
2 parents 6db0f8d + c480cea commit 783bd4c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions object.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
resource "openstack_objectstorage_container_v1" "tf_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"
}

0 comments on commit 783bd4c

Please sign in to comment.