Skip to content

Commit

Permalink
update readme, version.
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudomorph committed Apr 17, 2024
1 parent c8bae5b commit 0a7ecad
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Then, make sure `terragrunt-atlantis-config` is present on your Atlantis server.

```hcl
variable "terragrunt_atlantis_config_version" {
default = "1.17.9"
default = "1.18.0"
}
build {
Expand Down Expand Up @@ -132,6 +132,7 @@ One way to customize the behavior of this module is through CLI flag values pass
| `--filter` | Path or glob expression to the directory you want scope down the config for. Default is all files in root | "" |
| `--num-executors` | Number of executors used for parallel generation of projects. Default is 15 | 15 |
| `--execution-order-groups` | Computes execution_order_group for projects | false |
| `--depends-on ` | Computes depends_on for projects. Project names are required. | false |

## Project generation

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "github.com/transcend-io/terragrunt-atlantis-config/cmd"
// This variable is set at build time using -ldflags parameters.
// But we still set a default here for those using plain `go get` downloads
// For more info, see: http://stackoverflow.com/a/11355611/483528
var VERSION string = "1.17.9"
var VERSION string = "1.18.0"

func main() {
cmd.Execute(VERSION)
Expand Down
49 changes: 49 additions & 0 deletions out
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
automerge: false
parallel_apply: true
parallel_plan: true
projects:
- autoplan:
enabled: false
when_modified:
- '*.hcl'
- '*.tf*'
dir: dependency
execution_order_group: 0
name: dependency
- autoplan:
enabled: false
when_modified:
- '*.hcl'
- '*.tf*'
- ../dependency/terragrunt.hcl
depends_on:
- dependency
dir: depender
execution_order_group: 1
name: depender
- autoplan:
enabled: false
when_modified:
- '*.hcl'
- '*.tf*'
- ../../dependency/terragrunt.hcl
depends_on:
- dependency
dir: depender_on_depender/nested
execution_order_group: 1
name: depender_on_depender_nested
- autoplan:
enabled: false
when_modified:
- '*.hcl'
- '*.tf*'
- ../depender/terragrunt.hcl
- ../dependency/terragrunt.hcl
- nested/terragrunt.hcl
depends_on:
- depender
- dependency
dir: depender_on_depender
execution_order_group: 2
name: depender_on_depender
version: 3

0 comments on commit 0a7ecad

Please sign in to comment.