Skip to content

wttech/terraform-provider-aem

Repository files navigation

AEM Compose Logo WTT Logo

Apache License, Version 2.0, January 2004

AEM Compose - Terraform Provider

This provider allows development teams to easily set up Adobe Experience Manager (AEM) instances on virtual machines in the cloud (AWS, Azure, GCP, etc.) or bare metal machines. It's based on the AEM Compose tool and aims to simplify the process of creating AEM environments without requiring deep DevOps knowledge.

Published in Terraform Registry.

Purpose

The main purpose of this provider is to enable users to:

  • Set up as many AEM environments as needed with minimal effort
  • Eliminate the need for deep DevOps knowledge
  • Allow for seamless integration with popular cloud platforms such as AWS and Azure
  • Provide a simple and efficient way to manage AEM instances

Features

  • Easy configuration and management of AEM instances
  • Support for multiple cloud platforms and bare metal machines
  • Seamless integration with Terraform for infrastructure provisioning
  • Based on the powerful AEM Compose tool

Quickstart

The easiest way to get started is to review, copy and adapt provided examples:

  1. AWS EC2 instance with private IP
  2. AWS EC2 instance with public IP
  3. Bare metal machine

Development

Requirements

Building The Provider

  1. Clone the repository
  2. Enter the repository directory
  3. Build the provider using the Go install command:
go install

Adding Dependencies

This provider uses Go modules. Please see the Go documentation for the most up to date information about using Go modules.

To add a new dependency github.com/author/dependency to your Terraform provider:

go get github.com/author/dependency
go mod tidy

Then commit the changes to go.mod and go.sum.

Troubleshooting the provider

Before running any Terraform command simply set the environment variable TF_LOG=INFO (or ultimately TF_LOG=DEBUG) to see detailed logs about progress of the setting up the AEM instances.

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (see Requirements above).

To compile the provider, run go install. This will build the provider and put the provider binary in the $GOPATH/bin directory.

To generate or update documentation, run go generate.

In order to run the full suite of Acceptance tests, run make testacc.

Note: Acceptance tests create real resources, and often cost money to run.

make testacc

Testing the Provider using examples

Run command: sh develop.sh <example_path> <tf_args>.

For example:

  • sh develop.sh examples/aws_ssh plan

  • sh develop.sh examples/aws_ssh apply -auto-approve

  • sh develop.sh examples/aws_ssh destroy -auto-approve

  • sh develop.sh examples/aws_ssm plan

  • sh develop.sh examples/aws_ssm apply -auto-approve

  • sh develop.sh examples/aws_ssm destroy -auto-approve

Debugging the Provider

  1. Run command go run . -debug from IDEA in debug mode and copy the value of TF_REATTACH_PROVIDERS from the output.
  2. Set up breakpoint in the code.
  3. Run TF_REATTACH_PROVIDERS=<value_copied_above> TF_CLI_CONFIG_FILE=$(pwd)/../../dev_overrides.tfrc terraform apply in one of the examples directory.
  4. The breakpoint should be hit.