Notes:
- Wayfinder will start up with an initial local administrator user (not configured to use an IDP).
- Terraform is not configured to use S3 as a backend, and so state will be written locally.
- Any sensitive values (e.g. licence key) are passed directly as a variable to the module.
This example should be used for product testing and evaluation only. For a more production-ready deployment, please see the complete example.
- Create a DNS Zone in AWS Route53 and ensure the domain is delegated to the AWS nameservers.
- Copy the
terraform.tfvars.example
file toterraform.tfvars
and update with your values. - Run
terraform init -upgrade
- Run
terraform apply
The terraform-docs
utility is used to generate this README. Follow the below steps to update:
- Make changes to the
.terraform-docs.yml
file - Fetch the
terraform-docs
binary (https://terraform-docs.io/user-guide/installation/) - Run
terraform-docs markdown table --output-file ${PWD}/README.md --output-mode inject .
Name | Version |
---|---|
aws | ~> 5.0 |
Name | Description | Type | Default | Required |
---|---|---|---|---|
clusterissuer_email | The email address to use for the cert-manager cluster issuer. | string |
n/a | yes |
dns_zone_name | The local DNS zone to use (e.g. wayfinder.example.com). | string |
n/a | yes |
wayfinder_instance_id | The instance ID to use for Wayfinder. | string |
n/a | yes |
wayfinder_licence_key | The licence key to use for Wayfinder. | string |
n/a | yes |
access_entries | Map of access entries to add to the cluster. | map(object({ |
{} |
no |
availability_zones | List of availability zones to deploy into. | list(string) |
[ |
no |
disable_internet_access | Whether to disable internet access for EKS and the Wayfinder ingress controller. | bool |
false |
no |
environment | The environment name we are provisioning. | string |
"production" |
no |
tags | Tags to apply to all resources. | map(any) |
{} |
no |
vpc_cidr | CIDR block for the Wayfinder VPC. | string |
"10.0.0.0/21" |
no |
vpc_private_subnets | List of private subnets in the Wayfinder VPC. | list(string) |
[ |
no |
vpc_public_subnets | List of public subnets in the Wayfinder VPC. | list(string) |
[ |
no |
Name | Description |
---|---|
cluster_name | The name of the Wayfinder EKS cluster |
wayfinder_admin_password | The password for the Wayfinder local admin user |
wayfinder_admin_username | The username for the Wayfinder local admin user |
wayfinder_api_url | The URL for the Wayfinder API |
wayfinder_ui_url | The URL for the Wayfinder UI |