I’m trying to create ebs volume first Im pulling u...
# aws
s
I’m trying to create ebs volume first Im pulling up az’s then based on the output I want to create ebs volume
Copy code
azs = aws.get_availability_zones(state="available")
base_image_storage = aws.ebs.Volume(
  "qtx-base-image-storage",
  availability_zone=azs.zone_ids[0],
  size=10)