Created
May 26, 2020 05:43
-
-
Save darko-mesaros/5040e52d099128acbfa9e6d613a002ed to your computer and use it in GitHub Desktop.
Adds a repo to Cloud9 that is automatically cloned at startup
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: > | |
https://twitch.tv/ruptwelve | |
Parameters: | |
EnvName: | |
Type: String | |
Description: Enter the name for your IDE | |
Default: please-change-me | |
Resources: | |
Oblak9: | |
Type: AWS::Cloud9::EnvironmentEC2 | |
Properties: | |
AutomaticStopTimeMinutes: 60 | |
Description: This is easier to exit than vim | |
InstanceType: t3.large | |
Name: !Ref EnvName | |
Repositories: | |
- PathComponent: 'imporant-binaries' | |
RepositoryUrl: https://git-codecommit.eu-west-1.amazonaws.com/v1/repos/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment