Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.35 KB

README.md

File metadata and controls

37 lines (25 loc) · 1.35 KB

ANAML Terraform repository

This repository contains modules related to ANAML deployment on Kuberernetes

To use a module use the below:

module "foo" {
  source = "[email protected]:simple-machines/anaml-terraform-registry.git//modules/[MODULE-NAME]"
  [INSERT MODULE PARAMETERS]
}

For most cases you will likely want to use anaml-all which combines and deploys the below modules for you to a Kubernetes cluster:

Container registries

Some modules require you to specify the container registry to use to fetch container Images. We provide the below region specific container registries:

  • australia-southeast1-docker.pkg.dev/anaml-release-artifacts/docker

Development

After cloning the git repo run the below command in the project root directory:

git config core.hooksPath .githooks

This will configure Git pre-commit hooks in .githooks/pre-commit.d/ to be executed on commit. This handles document generation and formatting automatically.