This sheet goes along with this SSH YouTube tutorial
$ ssh brad@192.168.1.29
$ mkdir test
$ cd test
# NOT MY CODE! TAKEN FROM THE OFFICIAL DOCS: | |
# https://www.terraform.io/docs/providers/aws/r/api_gateway_account.html | |
# and saved here as a backup. | |
resource "aws_api_gateway_account" "demo" { | |
cloudwatch_role_arn = "${aws_iam_role.cloudwatch.arn}" | |
} | |
resource "aws_iam_role" "cloudwatch" { | |
name = "api_gateway_cloudwatch_global" |
$ ssh brad@192.168.1.29
$ mkdir test
$ cd test