Introduction
When performing an airgapped installation for your Terraform Enterprise environment, you may wish to verify the Installer Bootstrapper hasn't been altered. To verify the file's integrity, use the following procedure to check the Md5 checksum.
Procedure
- Download the Installer Bootstrapper
wget https://install.terraform.io/airgap/latest.tar.gz
- Get the md5 checksum of the downloaded file
md5 latest.tar.gz
MD5 (latest.tar.gz) = f89bc7d66124fa8791475589666b8151
- Verify the checksum that can be found in the
Etag
header for the S3 object
curl https://s3.amazonaws.com/replicated-airgap-work/replicated.tar.gz --head | grep -i etag
ETag: "f89bc7d66124fa8791475589666b8151"
- The checksums should match
Additional Information
-
For more information on airgapped Terraform Enterprise installations, see here.