Skip to content

Instantly share code, notes, and snippets.

@aurynn
Created March 26, 2020 03:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aurynn/df53e95454f8a7ef88771928f32eb12f to your computer and use it in GitHub Desktop.
Save aurynn/df53e95454f8a7ef88771928f32eb12f to your computer and use it in GitHub Desktop.
write-only-swift
# This will provide write access, but not list or read access
resource "openstack_objectstorage_container_v1" "test" {
name = "test-container"
container_read = ".r:-${var.service_username}"
container_write = "${var.project_id}:${var.service_username}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment