This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"ResourcePrefix": { | |
"type": "string", | |
"metadata": { | |
"description": "provide a 2-13 alphanumeric character in lower case prefix for all resources." | |
} | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: azure-vote-back | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: azure-vote-back | |
template: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Description: "xBrowserSync Personal API Server" | |
AWSTemplateFormatVersion: 2010-09-09 | |
Parameters: | |
ApiStageName: | |
Description: 'Name of the API Stage' | |
MaxLength: 6 | |
MinLength: 3 | |
Type: String |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: '2010-09-09' | |
Description: > | |
Stack to create an ALB backed by Lambda to return HTTP request back | |
Parameters: | |
Subnets: | |
Description: Select two or more public subnets | |
Type: List<AWS::EC2::Subnet::Id> | |
VpcId: |