Skip to content

Commit

Permalink
Update command variable reference
Browse files Browse the repository at this point in the history
  • Loading branch information
sftim authored and Paul Elliott committed Jan 15, 2020
1 parent a532133 commit 21cdadd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ If all provided subnets are public (no NAT gateway) then `ecs_service_assign_pub
| atlantis\_bitbucket\_user | Bitbucket username that is running the Atlantis command | string | `""` | no |
| atlantis\_bitbucket\_user\_token | Bitbucket token of the user that is running the Atlantis command | string | `""` | no |
| atlantis\_bitbucket\_user\_token\_ssm\_parameter\_name | Name of SSM parameter to keep atlantis_bitbucket_user_token | string | `"/atlantis/bitbucket/user/token"` | no |
| atlantis\_command\_line | Command to invoke when running the Atlantis container (as a list of command line items) | list(string) | `["server"]` | no |
| atlantis\_github\_user | GitHub username that is running the Atlantis command | string | `""` | no |
| atlantis\_github\_user\_token | GitHub token of the user that is running the Atlantis command | string | `""` | no |
| atlantis\_github\_user\_token\_ssm\_parameter\_name | Name of SSM parameter to keep atlantis_github_user_token | string | `"/atlantis/github/user/token"` | no |
Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ module "container_definition_github_gitlab" {
container_memory = var.ecs_task_memory
container_memory_reservation = var.container_memory_reservation

command = var.command
command = var.atlantis_command_line

port_mappings = [
{
Expand Down Expand Up @@ -453,7 +453,7 @@ module "container_definition_bitbucket" {
container_memory = var.ecs_task_memory
container_memory_reservation = var.container_memory_reservation

command = var.command
command = var.atlantis_command_line

port_mappings = [
{
Expand Down

0 comments on commit 21cdadd

Please sign in to comment.