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/aws-region
Kyle Carberry 8eae3295d5
Add additional modules (#19)
* Add modules

* Rename AWS region

* Fix AWS region mod

* Add AWS logo

* Fix AWS logo color

* Add comment

* Add icons

* Delete undocumented

* Fix maintainer

* Fix icons
2 years ago
..
README.md Add additional modules (#19) 2 years ago
main.tf Add additional modules (#19) 2 years ago

README.md

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

AWS Region

A parameter with all AWS regions. This allows developers to select the region closest to them.

Examples

Default Region

Customize the preselected parameter value:

module "aws-region" {
    source = "https://registry.coder.com/modules/aws-region"
    default = "us-east-1"
}

provider "aws" {
    region = module.aws_region.value
}

Customize Regions

Change the display name and icon for a region:

module "aws-region" {
    source = "https://registry.coder.com/modules/aws-region"
    custom_names = {
        "fra": "Awesome Germany!"
    }
    custom_icons = {
        "fra": "/icons/smiley.svg"
    }
}

provider "aws" {
    region = module.aws_region.value
}

Exclude Regions

Hide the fra region:

module "aws-region" {
    source = "https://registry.coder.com/modules/aws-region"
    exclude = [ "fra" ]
}

provider "aws" {
    region = module.aws_region.value
}