github cloudposse/atmos v1.57.0

latest releases: v1.88.1, v1, v1.88.0...
7 months ago

what

  • Add default CLI configuration to Atmos code
  • Update/improve examples and docs
  • Update demo.tape

why

  • Add default CLI configuration to Atmos code - this is useful when executing Atmos CLI commands (e.g. on CI/CD) that does not require components and stacks

If atmos.yaml is not found in any of the searched locations, Atmos will use the default CLI configuration:

base_path: "."
components:
  terraform:
    base_path: components/terraform
    apply_auto_approve: false
    deploy_run_init: true
    init_run_reconfigure: true
    auto_generate_backend_file: true
  helmfile:
    base_path: components/helmfile
    use_eks: true
    kubeconfig_path: /dev/shm
    helm_aws_profile_pattern: '{namespace}-{tenant}-gbl-{stage}-helm'
    cluster_name_pattern: '{namespace}-{tenant}-{environment}-{stage}-eks-cluster'
stacks:
  base_path: stacks
  included_paths:
  - orgs/**/*
  excluded_paths:
  - '**/_defaults.yaml'
  name_pattern: '{tenant}-{environment}-{stage}'
workflows:
  base_path: stacks/workflows
logs:
  file: /dev/stdout
  level: Info
schemas:
  jsonschema:
    base_path: stacks/schemas/jsonschema
  opa:
    base_path: stacks/schemas/opa

If Atmos does not find an atmos.yaml file and the default CLI config is used, and if you set the ENV variable ATMOS_LOGS_LEVEL to Debug (e.g. export ATMOS_LOGS_LEVEL=Debug) before executing Atmos commands, you'll see the following message:


image

Don't miss a new atmos release

NewReleases is sending notifications on new releases.