Skip to content

Instantly share code, notes, and snippets.

@mjmenger
Last active March 17, 2022 23:15
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 mjmenger/43d9ad1bc1fc95c47873922f590cc061 to your computer and use it in GitHub Desktop.
Save mjmenger/43d9ad1bc1fc95c47873922f590cc061 to your computer and use it in GitHub Desktop.
Finding CSP Images

https://support.f5.com/csp/article/K25195893

aws ec2 describe-images --region us-east-1 --owners '679593333241' --filters Name=description,Values='BIGIP-16'

aws ec2 describe-images --region us-east-1 --filters Name=description,Values='NGINX Plus' > nginxami.json

aws ec2 describe-images --region us-east-1 --owners '099720109477' --filters Name=name,Values='ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*' Name=virtualization-type,Values='hvm' > ubuntu-ami.json

aws ec2 describe-images --region us-east-1 --owners '099720109477' --filters Name=name,Values='ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-' Name=virtualization-type,Values='hvm' --query 'Images[].[ImageId]' --output text

az vm image list --publisher f5-networks --all -f byol

az vm image terms accept --urn f5-networks:f5-big-ip-byol:f5-big-ltm-2slot-byol:16.1.100000

az vm image list --publisher canonical --all -s 18_04-lts > ubuntu.json

if using the F5 BIG-IP module with the azure cli

{
    "offer": "f5-big-ip-better",
    "publisher": "f5-networks",
    "sku": "f5-bigip-virtual-edition-25m-better-hourly",
    "urn": "f5-networks:f5-big-ip-better:f5-bigip-virtual-edition-25m-better-hourly:14.1.404001",
    "version": "14.1.404001"
},
module bigip {
  count           = 2
  source          = "F5Networks/bigip-module/azure"
  version         = "1.1.1"
  prefix          = format("%s-bigip-%s",var.prefix,random_id.id.hex)
  f5_image_name   = "f5-bigip-virtual-edition-25m-better-hourly"
  f5_product_name = "f5-big-ip-better"
  f5_version      = "14.1.404001"
}

f5_image_name -> azure sku f5_version -> azure version f5_product_name -> azure offer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment