Skip to content

Commit 3fac2ea

Browse files
authored
Atmos 1.79.0 (#400)
* Update to Atmos 1.79.0 * Update to Atmos 1.79.0
1 parent 85968ce commit 3fac2ea

File tree

7 files changed

+205
-244
lines changed

7 files changed

+205
-244
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -242,9 +242,9 @@ For additional context, refer to some of these links.
242242
>
243243
> Use Cloud Posse's ready-to-go [terraform architecture blueprints](https://cloudposse.com/reference-architecture/) for AWS to get up and running quickly.
244244
>
245-
> ✅ We build it with you.<br/>
246-
> ✅ You own everything.<br/>
247-
> ✅ Your team wins.<br/>
245+
> ✅ We build it together with your team.<br/>
246+
> ✅ Your team owns everything.<br/>
247+
> ✅ 100% Open Source and backed by fanatical support.<br/>
248248
>
249249
> <a href="https://cpco.io/commercial-support?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-provider-utils&utm_content=commercial_support"><img alt="Request Quote" src="https://img.shields.io/badge/request%20quote-success.svg?style=for-the-badge"/></a>
250250
> <details><summary>📚 <strong>Learn More</strong></summary>

examples/data-sources/utils_aws_eks_update_kubeconfig/atmos.yaml

-18
Original file line numberDiff line numberDiff line change
@@ -116,24 +116,6 @@ commands:
116116
steps:
117117
- atmos terraform plan $ATMOS_COMPONENT -s $ATMOS_STACK
118118
- atmos terraform apply $ATMOS_COMPONENT -s $ATMOS_STACK
119-
- name: play
120-
description: This command plays games
121-
steps:
122-
- echo Playing...
123-
# subcommands
124-
commands:
125-
- name: hello
126-
description: This command says Hello world
127-
steps:
128-
- echo Hello world
129-
- name: ping
130-
description: This command plays ping-pong
131-
# If 'verbose' is set to 'true', atmos will output some info messages to the console before executing the command's steps
132-
# If 'verbose' is not defined, it implicitly defaults to 'false'
133-
verbose: true
134-
steps:
135-
- echo Playing ping-pong...
136-
- echo pong
137119
- name: show
138120
description: Execute 'show' commands
139121
# subcommands

examples/data-sources/utils_component_config/atmos.yaml

-18
Original file line numberDiff line numberDiff line change
@@ -116,24 +116,6 @@ commands:
116116
steps:
117117
- atmos terraform plan $ATMOS_COMPONENT -s $ATMOS_STACK
118118
- atmos terraform apply $ATMOS_COMPONENT -s $ATMOS_STACK
119-
- name: play
120-
description: This command plays games
121-
steps:
122-
- echo Playing...
123-
# subcommands
124-
commands:
125-
- name: hello
126-
description: This command says Hello world
127-
steps:
128-
- echo Hello world
129-
- name: ping
130-
description: This command plays ping-pong
131-
# If 'verbose' is set to 'true', atmos will output some info messages to the console before executing the command's steps
132-
# If 'verbose' is not defined, it implicitly defaults to 'false'
133-
verbose: true
134-
steps:
135-
- echo Playing ping-pong...
136-
- echo pong
137119
- name: show
138120
description: Execute 'show' commands
139121
# subcommands

examples/data-sources/utils_describe_stacks/atmos.yaml

-18
Original file line numberDiff line numberDiff line change
@@ -116,24 +116,6 @@ commands:
116116
steps:
117117
- atmos terraform plan $ATMOS_COMPONENT -s $ATMOS_STACK
118118
- atmos terraform apply $ATMOS_COMPONENT -s $ATMOS_STACK
119-
- name: play
120-
description: This command plays games
121-
steps:
122-
- echo Playing...
123-
# subcommands
124-
commands:
125-
- name: hello
126-
description: This command says Hello world
127-
steps:
128-
- echo Hello world
129-
- name: ping
130-
description: This command plays ping-pong
131-
# If 'verbose' is set to 'true', atmos will output some info messages to the console before executing the command's steps
132-
# If 'verbose' is not defined, it implicitly defaults to 'false'
133-
verbose: true
134-
steps:
135-
- echo Playing ping-pong...
136-
- echo pong
137119
- name: show
138120
description: Execute 'show' commands
139121
# subcommands

go.mod

+65-60
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,30 @@ module github.com/cloudposse/terraform-provider-utils
33
go 1.21
44

55
require (
6-
github.com/cloudposse/atmos v1.70.0
7-
github.com/gruntwork-io/terratest v0.46.14
8-
github.com/hashicorp/terraform-plugin-docs v0.19.1
9-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0
6+
github.com/cloudposse/atmos v1.79.0
7+
github.com/gruntwork-io/terratest v0.46.15
8+
github.com/hashicorp/terraform-plugin-docs v0.19.4
9+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0
1010
github.com/json-iterator/go v1.1.12
1111
github.com/stretchr/testify v1.9.0
1212
gopkg.in/yaml.v2 v2.4.0
1313
)
1414

1515
require (
16-
cloud.google.com/go v0.112.0 // indirect
17-
cloud.google.com/go/compute v1.23.3 // indirect
16+
cloud.google.com/go v0.112.1 // indirect
17+
cloud.google.com/go/compute v1.25.1 // indirect
1818
cloud.google.com/go/compute/metadata v0.2.3 // indirect
19-
cloud.google.com/go/iam v1.1.5 // indirect
20-
cloud.google.com/go/storage v1.36.0 // indirect
19+
cloud.google.com/go/iam v1.1.6 // indirect
20+
cloud.google.com/go/storage v1.38.0 // indirect
2121
dario.cat/mergo v1.0.0 // indirect
2222
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
2323
github.com/BurntSushi/toml v1.3.2 // indirect
2424
github.com/Kunde21/markdownfmt/v3 v3.1.0 // indirect
2525
github.com/Masterminds/goutils v1.1.1 // indirect
2626
github.com/Masterminds/semver/v3 v3.2.0 // indirect
2727
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
28-
github.com/Microsoft/go-winio v0.6.1 // indirect
29-
github.com/Microsoft/hcsshim v0.11.4 // indirect
28+
github.com/Microsoft/go-winio v0.6.2 // indirect
29+
github.com/Microsoft/hcsshim v0.11.5 // indirect
3030
github.com/OneOfOne/xxhash v1.2.8 // indirect
3131
github.com/ProtonMail/go-crypto v1.1.0-alpha.2 // indirect
3232
github.com/Shopify/ejson v1.3.3 // indirect
@@ -68,32 +68,36 @@ require (
6868
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
6969
github.com/cespare/xxhash/v2 v2.2.0 // indirect
7070
github.com/charmbracelet/bubbles v0.18.0 // indirect
71-
github.com/charmbracelet/bubbletea v0.25.0 // indirect
72-
github.com/charmbracelet/lipgloss v0.10.0 // indirect
71+
github.com/charmbracelet/bubbletea v0.26.4 // indirect
72+
github.com/charmbracelet/lipgloss v0.11.0 // indirect
73+
github.com/charmbracelet/x/ansi v0.1.2 // indirect
74+
github.com/charmbracelet/x/input v0.1.0 // indirect
75+
github.com/charmbracelet/x/term v0.1.1 // indirect
76+
github.com/charmbracelet/x/windows v0.1.0 // indirect
7377
github.com/cloudflare/circl v1.3.7 // indirect
7478
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect
75-
github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 // indirect
76-
github.com/containerd/containerd v1.7.14 // indirect
79+
github.com/containerd/containerd v1.7.17 // indirect
7780
github.com/containerd/log v0.1.0 // indirect
7881
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect
7982
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
8083
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
8184
github.com/dlclark/regexp2 v1.4.0 // indirect
82-
github.com/docker/cli v26.0.0+incompatible // indirect
83-
github.com/docker/distribution v2.8.3+incompatible // indirect
84-
github.com/docker/docker v26.0.0+incompatible // indirect
85-
github.com/docker/docker-credential-helpers v0.7.0 // indirect
85+
github.com/docker/cli v24.0.0+incompatible // indirect
86+
github.com/docker/distribution v2.8.2+incompatible // indirect
87+
github.com/docker/docker v26.1.1+incompatible // indirect
88+
github.com/docker/docker-credential-helpers v0.8.1 // indirect
8689
github.com/docker/libkv v0.2.2-0.20180912205406-458977154600 // indirect
8790
github.com/dustin/gojson v0.0.0-20160307161227-2e71ec9dd5ad // indirect
8891
github.com/emirpasic/gods v1.18.1 // indirect
89-
github.com/fatih/color v1.16.0 // indirect
92+
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
93+
github.com/fatih/color v1.17.0 // indirect
9094
github.com/felixge/httpsnoop v1.0.4 // indirect
9195
github.com/fsnotify/fsnotify v1.7.0 // indirect
9296
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
9397
github.com/go-git/go-billy/v5 v5.5.0 // indirect
9498
github.com/go-git/go-git/v5 v5.12.0 // indirect
9599
github.com/go-ini/ini v1.67.0 // indirect
96-
github.com/go-logr/logr v1.4.1 // indirect
100+
github.com/go-logr/logr v1.4.2 // indirect
97101
github.com/go-logr/stdr v1.2.2 // indirect
98102
github.com/gobwas/glob v0.2.3 // indirect
99103
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
@@ -107,16 +111,16 @@ require (
107111
github.com/google/uuid v1.6.0 // indirect
108112
github.com/google/wire v0.5.0 // indirect
109113
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
110-
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
114+
github.com/googleapis/gax-go/v2 v2.12.3 // indirect
111115
github.com/gorilla/mux v1.8.1 // indirect
112116
github.com/gosimple/slug v1.12.0 // indirect
113117
github.com/gosimple/unidecode v1.0.1 // indirect
114118
github.com/hairyhenderson/go-fsimpl v0.0.0-20220529183339-9deae3e35047 // indirect
115-
github.com/hairyhenderson/gomplate/v3 v3.11.7 // indirect
119+
github.com/hairyhenderson/gomplate/v3 v3.11.8 // indirect
116120
github.com/hairyhenderson/toml v0.4.2-0.20210923231440-40456b8e66cf // indirect
117121
github.com/hairyhenderson/yaml v0.0.0-20220618171115-2d35fca545ce // indirect
118122
github.com/hashicorp/cli v1.1.6 // indirect
119-
github.com/hashicorp/consul/api v1.25.1 // indirect
123+
github.com/hashicorp/consul/api v1.28.2 // indirect
120124
github.com/hashicorp/errwrap v1.1.0 // indirect
121125
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
122126
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
@@ -134,17 +138,17 @@ require (
134138
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
135139
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
136140
github.com/hashicorp/go-uuid v1.0.3 // indirect
137-
github.com/hashicorp/go-version v1.6.0 // indirect
141+
github.com/hashicorp/go-version v1.7.0 // indirect
138142
github.com/hashicorp/golang-lru v0.5.4 // indirect
139-
github.com/hashicorp/hc-install v0.6.4 // indirect
143+
github.com/hashicorp/hc-install v0.7.0 // indirect
140144
github.com/hashicorp/hcl v1.0.0 // indirect
141145
github.com/hashicorp/hcl/v2 v2.20.1 // indirect
142146
github.com/hashicorp/logutils v1.0.0 // indirect
143147
github.com/hashicorp/serf v0.10.1 // indirect
144-
github.com/hashicorp/terraform-config-inspect v0.0.0-20231204233900-a34142ec2a72 // indirect
145-
github.com/hashicorp/terraform-exec v0.20.0 // indirect
146-
github.com/hashicorp/terraform-json v0.21.0 // indirect
147-
github.com/hashicorp/terraform-plugin-go v0.22.0 // indirect
148+
github.com/hashicorp/terraform-config-inspect v0.0.0-20240607080351-271db412dbcb // indirect
149+
github.com/hashicorp/terraform-exec v0.21.0 // indirect
150+
github.com/hashicorp/terraform-json v0.22.1 // indirect
151+
github.com/hashicorp/terraform-plugin-go v0.23.0 // indirect
148152
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
149153
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
150154
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
@@ -160,8 +164,8 @@ require (
160164
github.com/joho/godotenv v1.4.0 // indirect
161165
github.com/jwalton/go-supportscolor v1.2.0 // indirect
162166
github.com/kevinburke/ssh_config v1.2.0 // indirect
163-
github.com/klauspost/compress v1.17.0 // indirect
164-
github.com/lrstanley/bubblezone v0.0.0-20240125042004-b7bafc493195 // indirect
167+
github.com/klauspost/compress v1.17.2 // indirect
168+
github.com/lrstanley/bubblezone v0.0.0-20240602193536-d14e6b69d7f9 // indirect
165169
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
166170
github.com/magiconair/properties v1.8.7 // indirect
167171
github.com/mattn/go-colorable v0.1.13 // indirect
@@ -183,18 +187,18 @@ require (
183187
github.com/muesli/reflow v0.3.0 // indirect
184188
github.com/muesli/termenv v0.15.2 // indirect
185189
github.com/oklog/run v1.1.0 // indirect
186-
github.com/open-policy-agent/opa v0.63.0 // indirect
190+
github.com/open-policy-agent/opa v0.65.0 // indirect
187191
github.com/opencontainers/go-digest v1.0.0 // indirect
188-
github.com/opencontainers/image-spec v1.1.0-rc6 // indirect
192+
github.com/opencontainers/image-spec v1.1.0 // indirect
189193
github.com/otiai10/copy v1.14.0 // indirect
190-
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
194+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
191195
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
192196
github.com/pjbgf/sha1cd v0.3.0 // indirect
193197
github.com/pkg/errors v0.9.1 // indirect
194198
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
195199
github.com/posener/complete v1.2.3 // indirect
196-
github.com/prometheus/client_golang v1.19.0 // indirect
197-
github.com/prometheus/client_model v0.5.0 // indirect
200+
github.com/prometheus/client_golang v1.19.1 // indirect
201+
github.com/prometheus/client_model v0.6.1 // indirect
198202
github.com/prometheus/common v0.48.0 // indirect
199203
github.com/prometheus/procfs v0.12.0 // indirect
200204
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect
@@ -215,7 +219,7 @@ require (
215219
github.com/spf13/cast v1.6.0 // indirect
216220
github.com/spf13/cobra v1.8.0 // indirect
217221
github.com/spf13/pflag v1.0.5 // indirect
218-
github.com/spf13/viper v1.18.2 // indirect
222+
github.com/spf13/viper v1.19.0 // indirect
219223
github.com/subosito/gotenv v1.6.0 // indirect
220224
github.com/tchap/go-patricia/v2 v2.3.1 // indirect
221225
github.com/tmccombs/hcl2json v0.3.3 // indirect
@@ -228,44 +232,45 @@ require (
228232
github.com/xanzy/ssh-agent v0.3.3 // indirect
229233
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
230234
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
235+
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
231236
github.com/yashtewari/glob-intersection v0.2.0 // indirect
232-
github.com/yuin/goldmark v1.7.0 // indirect
237+
github.com/yuin/goldmark v1.7.1 // indirect
233238
github.com/yuin/goldmark-meta v1.1.0 // indirect
234239
github.com/zclconf/go-cty v1.14.4 // indirect
235240
github.com/zealic/xignore v0.3.3 // indirect
236241
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
237-
go.etcd.io/bbolt v1.3.7 // indirect
242+
go.etcd.io/bbolt v1.3.10 // indirect
238243
go.opencensus.io v0.24.0 // indirect
239-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect
240-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 // indirect
241-
go.opentelemetry.io/otel v1.21.0 // indirect
242-
go.opentelemetry.io/otel/metric v1.21.0 // indirect
243-
go.opentelemetry.io/otel/sdk v1.21.0 // indirect
244-
go.opentelemetry.io/otel/trace v1.21.0 // indirect
244+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
245+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
246+
go.opentelemetry.io/otel v1.24.0 // indirect
247+
go.opentelemetry.io/otel/metric v1.24.0 // indirect
248+
go.opentelemetry.io/otel/sdk v1.22.0 // indirect
249+
go.opentelemetry.io/otel/trace v1.24.0 // indirect
245250
go.uber.org/atomic v1.9.0 // indirect
246251
go.uber.org/multierr v1.9.0 // indirect
247252
go4.org/intern v0.0.0-20230205224052-192e9f60865c // indirect
248253
go4.org/unsafe/assume-no-moving-gc v0.0.0-20230525183740-e7c30c78aeb2 // indirect
249254
gocloud.dev v0.25.1-0.20220408200107-09b10f7359f7 // indirect
250-
golang.org/x/crypto v0.21.0 // indirect
255+
golang.org/x/crypto v0.23.0 // indirect
251256
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
252-
golang.org/x/mod v0.16.0 // indirect
253-
golang.org/x/net v0.22.0 // indirect
254-
golang.org/x/oauth2 v0.16.0 // indirect
255-
golang.org/x/sync v0.6.0 // indirect
256-
golang.org/x/sys v0.18.0 // indirect
257-
golang.org/x/term v0.18.0 // indirect
258-
golang.org/x/text v0.14.0 // indirect
257+
golang.org/x/mod v0.17.0 // indirect
258+
golang.org/x/net v0.25.0 // indirect
259+
golang.org/x/oauth2 v0.18.0 // indirect
260+
golang.org/x/sync v0.7.0 // indirect
261+
golang.org/x/sys v0.20.0 // indirect
262+
golang.org/x/term v0.20.0 // indirect
263+
golang.org/x/text v0.15.0 // indirect
259264
golang.org/x/time v0.5.0 // indirect
260265
golang.org/x/tools v0.17.0 // indirect
261-
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
262-
google.golang.org/api v0.155.0 // indirect
266+
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
267+
google.golang.org/api v0.171.0 // indirect
263268
google.golang.org/appengine v1.6.8 // indirect
264-
google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 // indirect
265-
google.golang.org/genproto/googleapis/api v0.0.0-20240123012728-ef4313101c80 // indirect
266-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
267-
google.golang.org/grpc v1.62.1 // indirect
268-
google.golang.org/protobuf v1.33.0 // indirect
269+
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
270+
google.golang.org/genproto/googleapis/api v0.0.0-20240318140521-94a12d6c2237 // indirect
271+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect
272+
google.golang.org/grpc v1.64.0 // indirect
273+
google.golang.org/protobuf v1.34.0 // indirect
269274
gopkg.in/ini.v1 v1.67.0 // indirect
270275
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
271276
gopkg.in/warnings.v0 v0.1.2 // indirect

0 commit comments

Comments
 (0)