This may be a silly question because my azure know...
# getting-started
h
This may be a silly question because my azure knowledge is minimal I was reading the state_backends page for azure, it is recommended to set
state_backend.uri
to
Copy code
azure://<your container_name>/<prefix for state JSON blobs>
while for aws / google cloud, it is
Copy code
[s3|gs]://<your bucket name>/<prefix for state JSON blobs>
I'm curious what
container_name
is. I'm coming from mostly an AWS background & jargon, is azure blob container equivalent to aws s3 bucket?
1
a
Within a single storage account you can create multiple named containers. So your azure connection string is to a specific storage account, and then the container name specifies the container within that account.
💜 3