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.
![]() |
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago | |
main.test.ts | 2 years ago | |
main.tf | 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 |
|
AWS Region
A parameter with all AWS regions. This allows developers to select the region closest to them.
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
}
Examples
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
}