How to use the cloudform.Fn.Ref function in cloudform

To help you get started, we’ve selected a few cloudform examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github matthewkeil / nomad-devops / aws / cloudfront / ClientDistribution.ts View on Github external
DefaultRootObject: "index.html",
        Enabled: true,
        HttpVersion: "http2",
        // Logging: {
        //     IncludeCookies: false,
        //     Bucket: '', // TODO:
        //     Prefix: '' // TODO:
        // },
        Origins: [
            {
                Id: "s3Origin",
                DomainName: Fn.GetAtt("ClientBucket", "DomainName"),
                S3OriginConfig: {
                    OriginAccessIdentity: Fn.Join("/", [
                        "origin-access-identity/cloudfront",
                        Fn.Ref("ClientOriginAccessIdentity")
                    ])
                }
            }
        ],
        PriceClass: "PriceClass_100", // PriceClass_100 | PriceClass_200 | PriceClass_All
        ViewerCertificate: {
            AcmCertificateArn: Fn.ImportValue(
                `${pascalCaseDomainName(config.ROOT_DOMAIN)}Certificate`
            ),
            MinimumProtocolVersion: "TLSv1.1_2016",
            SslSupportMethod: "sni-only"
        }
    }
}).dependsOn(["ClientBucket", "ClientOriginAccessIdentity"]);
github matthewkeil / nomad-devops / aws / cloudfront / ClientOriginAccessIdentity.ts View on Github external
import { CloudFront, Fn } from "cloudform";
import { config } from "../../config";
/**
 *
 * Fn.Ref('OriginAccessIdentity') returns access identity, such as E15MNIMTCFKK4C.
 * Fn.GetAtt('OriginAccessIdentity', 'S3CanonicalUserId') returns Amazon S3 canonical user ID
 *  - for example: b970b42360b81c8ddbd79d2f5df0069ba9033c8a79655752abe380cd6d63ba8bcf23384d568fcf89fc49700b5e11a0fd
 *
 */

export const ClientOriginAccessIdentity = new CloudFront.CloudFrontOriginAccessIdentity({
    CloudFrontOriginAccessIdentityConfig: {
        Comment: Fn.Join("", [
            `origin access identity for `,
            Fn.Ref("SubDomain"),
            ".",
            config.ROOT_DOMAIN
        ])
    }
});
github matthewkeil / nomad-devops / aws / core.ts View on Github external
const template = {
        Description: `core-${pascalCaseDomainName(config.ROOT_DOMAIN)}`,
        Parameters: {
            RootDomain: {
                Description: "Root domain at which the system is hosted.",
                Type: "String",
                Default: config.ROOT_DOMAIN
            }
        },
        Resources: {
            HostedZone
        },
        Outputs: {
            HostedZoneId: {
                Description: `HostedZoneId for ${config.ROOT_DOMAIN}`,
                Value: Fn.Ref("HostedZone"),
                Export: {
                    Name: `${pascalCaseDomainName(config.ROOT_DOMAIN)}HostedZone`
                }
            }
        }
    };

    if (!(await apiGatewayAccountExists())) {
        (template.Resources as any).ApiGatewayAccount = ApiGatewayAccount;
        (template.Resources as any).ApiGatewayPolicy = ApiGatewayPolicy;
        (template.Resources as any).ApiGatewayRole = ApiGatewayRole;
    }

    if (deployCert) {
        (template.Resources as any).Certificate = Certificate;
        (template.Outputs as any).Certificate = {
github matthewkeil / nomad-devops / aws / apiGateway / BasePathMapping.ts View on Github external
export const BasePathMapping = (branch: string) => {
    const basePathMapping = new ApiGateway.BasePathMapping({
        RestApiId: Fn.Ref("ApiGateway"),
        DomainName: Fn.Join(".", [Fn.Ref("SubDomain"), config.ROOT_DOMAIN]),
        BasePath: Fn.Ref("BasePath"),
        Stage: Fn.Ref("GitHubBranch")
    });

    if (branch === "master") {
        basePathMapping.dependsOn("DomainName");
    } else {
        basePathMapping.dependsOn("ApiGatewayStage");
    }

    return basePathMapping;
};
github matthewkeil / nomad-devops / aws / core.ts View on Github external
}
            }
        }
    };

    if (!(await apiGatewayAccountExists())) {
        (template.Resources as any).ApiGatewayAccount = ApiGatewayAccount;
        (template.Resources as any).ApiGatewayPolicy = ApiGatewayPolicy;
        (template.Resources as any).ApiGatewayRole = ApiGatewayRole;
    }

    if (deployCert) {
        (template.Resources as any).Certificate = Certificate;
        (template.Outputs as any).Certificate = {
            Description: `SSL Certificate covering *.${config.ROOT_DOMAIN}`,
            Value: Fn.Ref("Certificate"),
            Export: {
                Name: `${pascalCaseDomainName(config.ROOT_DOMAIN)}Certificate`
            }
        };
    }

    return template;
};
github matthewkeil / nomad-devops / aws / apiGateway / BasePathMapping.ts View on Github external
export const BasePathMapping = (branch: string) => {
    const basePathMapping = new ApiGateway.BasePathMapping({
        RestApiId: Fn.Ref("ApiGateway"),
        DomainName: Fn.Join(".", [Fn.Ref("SubDomain"), config.ROOT_DOMAIN]),
        BasePath: Fn.Ref("BasePath"),
        Stage: Fn.Ref("GitHubBranch")
    });

    if (branch === "master") {
        basePathMapping.dependsOn("DomainName");
    } else {
        basePathMapping.dependsOn("ApiGatewayStage");
    }

    return basePathMapping;
};
github matthewkeil / nomad-devops / aws / s3 / ClientBucketPolicy.ts View on Github external
import { S3, Fn } from "cloudform";

export const ClientBucketPolicy = new S3.BucketPolicy({
    Bucket: Fn.Ref("ClientBucket"),
    PolicyDocument: {
        Version: "2012-10-17",
        Statement: [
            {
                Sid: "Allow CloudFront read access",
                Effect: "Allow",
                Action: "s3:GetObject",
                Resource: Fn.Join("", [Fn.GetAtt("ClientBucket", "Arn"), "/*"]),
                Principal: {
                    CanonicalUser: Fn.GetAtt("ClientOriginAccessIdentity", "S3CanonicalUserId")
                }
            }
        ]
    }
}).dependsOn("ClientOriginAccessIdentity");