Skip to content

Commit

Permalink
Update how to get image with Azure (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocaisa authored Jul 23, 2024
1 parent a699e30 commit 759b892
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions examples/azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,15 @@ module "azure" {
cluster_name = "phoenix"
domain = "calculquebec.cloud"

# Visit https://azuremarketplace.microsoft.com/en-us/marketplace/apps/almalinux.almalinux
# to contract the free AlmaLinux plan and be able to use the image.
plan = {
name = "8_5"
product = "almalinux"
publisher = "almalinux"
}
# Using the AZure CLI, you can list the image versions that are available to use. For example,
# az vm image list --location eastus --publisher almalinux --offer almalinux-x86_64 --sku 9-gen2 --all --output table
# az vm image list --location eastus --publisher almalinux --offer almalinux-arm --sku 9-arm-gen2 --all --output table
# (Note: available versions may be location specific!)
image = {
publisher = "almalinux",
offer = "almalinux",
sku = "8_5",
version = "8.5.20211118"
offer = "almalinux-x86_64",
sku = "9-gen2",
version = "9.3.2023111602"
}

instances = {
Expand Down

0 comments on commit 759b892

Please sign in to comment.