- Quit Getting Lost In The Sea Of Information
- Learn AWS By Using It
- A Brief History Lesson On AWS
- The Problem To Be Solved While Learning
- When The Dust Settles
- Getting Setup With AWS
- Getting Started With AWS
- 3 Things You Need To Do Before Using Your New Account
- Configuring Your CLI
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
import React from "react"; | |
import { | |
ForgotPassword, | |
RequireNewPassword, | |
SignIn, | |
SignUp, | |
VerifyContact | |
} from "aws-amplify-react"; | |
import config from "../../aws-exports"; | |
import { Authenticator, Greetings } from "aws-amplify-react/dist/Auth"; |
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
version: 0.2 | |
phases: | |
install: | |
commands: | |
- echo "install step" | |
pre_build: | |
commands: | |
- echo "pre_build step" | |
build: | |
commands: |
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
version: 0.2 | |
phases: | |
install: | |
commands: | |
- echo "install step" | |
pre_build: | |
commands: | |
- echo "pre_build step" | |
build: | |
commands: |
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
variable "image_name" { | |
type = "string" | |
} | |
module "codecommit-cicd" { | |
source = "git::https://github.com/slalompdx/terraform-aws-codecommit-cicd.git?ref=master" | |
repo_name = "docker-image-build" # Required | |
organization_name = "kylegalbraith" # Required | |
repo_default_branch = "master" # Default value | |
aws_region = "us-west-2" # Default value |
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
build: | |
commands: | |
- npm build | |
post_build: | |
commands: | |
- aws s3 sync --delete . "s3://<your-static-website-bucket>" |
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
version: 0.2 | |
phases: | |
install: | |
commands: | |
- echo "install step" | |
pre_build: | |
commands: | |
- echo "pre_build step" | |
build: | |
commands: |
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
2018/03/21 12:41:49 [INFO] Terraform version: 0.11.4 7878d66b386e5474102b5047722c2de2b3237278 | |
2018/03/21 12:41:49 [INFO] Go runtime version: go1.10 | |
2018/03/21 12:41:49 [INFO] CLI args: []string{"C:\\terraform\\terraform.exe", "apply", "-var", "packagePath=..\\code\\package.zip", "-var", "packageName=package.zip"} | |
2018/03/21 12:41:49 [DEBUG] Attempting to open CLI config file: C:\Users\Kyle.Galbraith\AppData\Roaming\terraform.rc | |
2018/03/21 12:41:49 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2018/03/21 12:41:49 [INFO] CLI command args: []string{"apply", "-var", "packagePath=..\\code\\package.zip", "-var", "packageName=package.zip"} | |
2018/03/21 12:41:49 [INFO] command: empty terraform config, returning nil | |
2018/03/21 12:41:49 [DEBUG] command: no data state file found for backend config | |
2018/03/21 12:41:49 [DEBUG] New state was assigned lineage "73a84d51-e1ec-4236-468b-f4a395545239" | |
2018/03/21 12:41:49 [INFO] command: backend initialized: <nil> |
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
variable "region" { default = "us-west-2" } | |
variable "packagePath" { default = "code\\package.zip" } | |
variable "packageName" { default = "package.zip" } | |
locals { | |
packageFile = "${file("${path.module}\\${var.packagePath}")}" | |
} | |
provider "aws" { |
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
var mongodb = require('mongodb'), | |
MongoClient = mongodb.MongoClient, | |
dbUrl = process.env.MONGOLAB_URI, | |
urlObj = {}, | |
urlInserted = false, | |
ids; | |
function generateRandomId(currIds) { | |
var randomId = Math.floor(Math.random() * 10000); | |
if (currIds.indexOf(randomId) < 0) { |