|
| 1 | +## Contents |
| 2 | + |
| 3 | +- [Usage](#usage) |
| 4 | +- [Life cycle](#life-cycle) |
| 5 | +- [Contributing](#contributing) |
| 6 | +- [Inputs](#inputs) |
| 7 | +- [Outputs](#outputs) |
| 8 | +- [License](#license) |
| 9 | + |
| 10 | +**Note:** Like HashiCorp Boundary, this module is relatively new and may contain some issues. If you do experience an issue, please create a [new issue](https://github.com/jasonwalsh/terraform-aws-boundary/issues) in the repository. Pull requests are also welcome! |
| 11 | + |
| 12 | +## Usage |
| 13 | + |
| 14 | +This module uses Terraform to install [HashiCorp Boundary](https://www.boundaryproject.io/) in an Amazon Web Services (AWS) account. |
| 15 | + |
| 16 | +This module uses the [official documentation](https://www.boundaryproject.io/docs/installing/high-availability) to install a highly available service. |
| 17 | + |
| 18 | + |
| 19 | + |
| 20 | +This module creates the following resources: |
| 21 | + |
| 22 | +- A virtual private cloud with all associated networking resources (e.g., public and private subnets, route tables, internet gateways, NAT gateways, etc) |
| 23 | +- A PostgreSQL RDS instance used by the [Boundary controllers](https://www.boundaryproject.io/docs/installing/postgres) |
| 24 | +- Two [AWS KMS](https://www.boundaryproject.io/docs/configuration/kms/awskms) keys, one for `root` and the other for `worker-auth` |
| 25 | +- An application load balancer (ALB) that serves as a gateway to the Boundary UI/API |
| 26 | +- Two auto scaling groups, one for controller instances and the other for worker instances |
| 27 | + |
| 28 | +For more information on Boundary, please visit the [official documentation](https://www.boundaryproject.io/docs) or the [tutorials](https://learn.hashicorp.com/boundary) on HashiCorp Learn. |
| 29 | + |
| 30 | +To use this module, the following environment variables are required: |
| 31 | + |
| 32 | +| Name | |
| 33 | +|------| |
| 34 | +| `AWS_ACCESS_KEY_ID` | |
| 35 | +| `AWS_SECRET_ACCESS_KEY` | |
| 36 | +| `AWS_DEFAULT_REGION` | |
| 37 | + |
| 38 | +After exporting the environment variables, simply run the following command: |
| 39 | + |
| 40 | +``` |
| 41 | +$ terraform apply |
| 42 | +``` |
| 43 | + |
| 44 | +## Life cycle |
| 45 | + |
| 46 | +This module creates the controller instances *before* the worker instances. This implicit dependency ensures that the controller and worker instances share the same `worker-auth` KMS key. |
| 47 | + |
| 48 | +The [controller](modules/controller) module also initializes the PostgreSQL database using the following command: |
| 49 | + |
| 50 | +``` |
| 51 | +$ boundary database init -config /etc/boundary/configuration.hcl |
| 52 | +``` |
| 53 | + |
| 54 | +After initializing the database, Boundary outputs information required to authenticate as defined [here](https://learn.hashicorp.com/tutorials/boundary/getting-started-dev?in=boundary/getting-started). Notably, the Auth Method ID, Login Name, and Password are generated. |
| 55 | + |
| 56 | +Since initializing the database is a one-time operation, this module writes the output of the command to an S3 bucket so that the user always has access to this information. |
| 57 | + |
| 58 | +In order to retrieve the information, you can invoke the following command: |
| 59 | + |
| 60 | +``` |
| 61 | +$ $(terraform output s3command) |
| 62 | +``` |
| 63 | + |
| 64 | +**Note:** The `$` before the `(` is required to run this command. |
| 65 | + |
| 66 | +The result of running the command displays the contents of the [`cloud-init-output.log`](https://cloudinit.readthedocs.io/en/latest/topics/logging.html), which contains the output of the `boundary database init` command. |
| 67 | + |
| 68 | +After you run this command, you can visit the Boundary UI using the `dns_name` output. |
| 69 | + |
| 70 | +To authenticate to Boundary, you can reference [this](https://learn.hashicorp.com/tutorials/boundary/getting-started-connect?in=boundary/getting-started) guide. |
| 71 | + |
| 72 | +**Note:** If you attempt to run the `authenticate` command and are met with this error `Error trying to perform authentication: dial tcp 127.0.0.1:9200: connect: connection refused`, you can export the `BOUNDARY_ADDR` environment variable to the value of the DNS name of the ALB. For example: |
| 73 | + |
| 74 | +``` |
| 75 | +export BOUNDARY_ADDR="http://$(terraform output dns_name)" |
| 76 | +``` |
| 77 | + |
| 78 | +## Contributing |
| 79 | + |
| 80 | +As mentioned in the beginning of the README, this module is relatively new and may have issues. If you do discover an issue, please create a [new issue](https://github.com/jasonwalsh/terraform-aws-boundary/issues) or a [pull request](https://github.com/jasonwalsh/terraform-aws-boundary/pulls). |
| 81 | + |
| 82 | +As always, thanks for using this module! |
| 83 | + |
1 | 84 | <!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
|
2 | 85 | ## Requirements
|
3 | 86 |
|
|
10 | 93 | | Name | Version |
|
11 | 94 | |------|---------|
|
12 | 95 | | aws | n/a |
|
| 96 | +| random | n/a | |
13 | 97 |
|
14 | 98 | ## Inputs
|
15 | 99 |
|
|
35 | 119 | | Name | Description |
|
36 | 120 | |------|-------------|
|
37 | 121 | | dns\_name | The public DNS name of the controller load balancer |
|
| 122 | +| s3command | The S3 cp command used to display the contents of the cloud-init-output.log | |
38 | 123 |
|
39 | 124 | <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
|
| 125 | + |
| 126 | +## License |
| 127 | + |
| 128 | +[MIT License](LICENSE) |
0 commit comments