This sheet goes along with this SSH YouTube tutorial
$ ssh [email protected]
$ 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 [email protected]
$ mkdir test
$ cd test