cloud-image-uploader: azure gallery names are unique per subscription

I assumed gallery names were unique per resource group, but this is not
the case. They're unique per subscription, oddly, so we need to use a
different name in staging.
This commit is contained in:
Jeremy Cline 2024-04-10 17:09:48 -04:00
parent 6d9f9ecc68
commit e086b2fe93
No known key found for this signature in database

View file

@ -32,11 +32,12 @@ location = "eastus"
{% if env == "staging" %}
resource_group_name = "fedora-cloud-staging"
storage_account_name = "fedoraimagesstaging"
gallery_name = "FedoraStaging"
{% else %}
resource_group_name = "fedora-cloud"
storage_account_name = "fedoraimages"
{% endif %}
gallery_name = "Fedora"
{% endif %}
gallery_description = "The Fedora compute gallery."
storage_container_name = "vhds"