Skip to content
2 changes: 2 additions & 0 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ import (
"github.com/cloudposse/atmos/internal/tui/templates"
"github.com/cloudposse/atmos/internal/tui/templates/term"
cfg "github.com/cloudposse/atmos/pkg/config"
// Import adapters to register them with the config package.
_ "github.com/cloudposse/atmos/pkg/config/adapters"
"github.com/cloudposse/atmos/pkg/data"
"github.com/cloudposse/atmos/pkg/filesystem"
"github.com/cloudposse/atmos/pkg/flags"
Expand Down
779 changes: 779 additions & 0 deletions docs/prd/import-adapter-registry.md

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions errors/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,9 @@ var (
ErrNoFileMatchPattern = errors.New("no files matching patterns found")
ErrMaxImportDepth = errors.New("maximum import depth reached")
ErrNoValidAbsolutePaths = errors.New("no valid absolute paths found")
ErrDownloadRemoteConfig = errors.New("failed to download remote config")
ErrMockImportFailure = errors.New("mock error: simulated import failure")
ErrProcessNestedImports = errors.New("failed to process nested imports")

// Profiler-related errors.
ErrProfilerStart = errors.New("profiler start failed")
Expand Down
2 changes: 1 addition & 1 deletion examples/quick-start-advanced/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG GEODESIC_OS=debian
# https://atmos.tools/
# https://github.com/cloudposse/atmos
# https://github.com/cloudposse/atmos/releases
ARG ATMOS_VERSION=1.203.0
ARG ATMOS_VERSION=1.204.0

# Terraform: https://github.com/hashicorp/terraform/releases
ARG TF_VERSION=1.5.7
Expand Down
Loading
Loading