You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
modules/fly-region/README.md

1.2 KiB

display_name description icon maintainer_github verified tags
Fly.io Region A parameter with human region names and icons ../.icons/fly.svg coder true
helper
parameter
fly

Fly.io Region

This module adds Fly.io regions to your Coder template. Regions can be whitelisted using the regions argument and given custom names and custom icons with their respective map arguments (custom_names, custom_icons).

Examples

Using default settings

module "fly-region" {
    source = "https://registry.coder.com/modules/fly-region"
}

Using region whitelist

The regions argument can be used to display only the desired regions in the Coder parameter.

module "fly-region" {
    source = "https://registry.coder.com/modules/fly-region"
    default = "ams"
    regions = ["ams", "arn", "atl"]
}

TODO: Add screenshot filtered_flyio.png

Using custom icons and names

Set custom icons and names with their respective maps.

module "fly-region" {
    source = "https://registry.coder.com/modules/fly-region"
    default = "ams"
    custom_icons = {
        "ams" = "/emojis/1f90e.png"
    }
    custom_names = {
        "ams" = "We love the Netherlands!"
    }
}