foundation-version.yaml
---

Foundation Version CloudFormation Template

This CloudFormation template simply logs and displays a version of these foundation templates that are currently deployed in an account.

AWSTemplateFormatVersion: '2010-09-09' Description: 'UITS Account Foundation Version: 8' Resources:

Sleep Delay

CloudFormation templates must have at least one resources. So we'll call our SleepDelay function. This isn't the best way to do this, so if anyone ever figures out a better placeholder resource, please change this!

SleepDelay: Type: Custom::SleepDelay Properties: ServiceToken: !ImportValue foundation-SleepDelayFunction-arn

Outputs

Outputs: FoundationVersion: Value: "8" Description: "Version of the Account Foundation templates deployed" Export: Name: "fdn-version"