Ciinabox Pipelines Cloudformation Step Support for Export as a Query Type

You can now query Cloudformation exports using the cloudformation ciinabox-pipelines method.

stage('get exports') {
    steps {
        script {
            def snsTopic = cloudformation(
                region: env.AWS_REGION,
                queryType: 'export',
                query: "dev-notification-sns-topic"
            )
            println "SNS_TOPIC: ${snsTopic}"
        }
    }
}