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 cb72a16221
feat: add test framework (#48)
* Add test framework

* Add aws-region tests

* Add azure-region tests

* Update CONTRIBUTING.md

* Add formatting

* Improve fmt

* Format Terraform
2 years ago
..
README.md fix: update tags and fix module bugs, rewrite vscode-server (#42) 2 years ago
main.test.ts feat: add test framework (#48) 2 years ago
main.tf feat: add test framework (#48) 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
regions
aws

AWS Region

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

AWS Regions

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
}