How can I prevent the app from being charged?

Hi, in your fly.toml you’ve got:

[[vm]]
cpu_kind = "shared"
cpus = 1
memory_mb = 1_024

Referring to our free allowances:

Resources included for free on all plans:

  • Up to 3 shared-cpu-1x 256mb VMs

So because your fly.toml is configured to use shared-cpu-1x 1024 VMs, you’re being charged for the additional 768mb.

If you want to stop being charged, you can run fly scale memory 256.

1 Like