Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions 01-Getting-Started/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Cloud Foundation Toolkit Lab - 01-Getting-Started
Clone this repository and run locally, or use Cloud Shell to walk through the steps:

Expand Down Expand Up @@ -145,7 +144,7 @@ remote_state_bucket = gs://cft-lab-state-<YOUR_NAME>-${random_id.suffix.hex}
Run the following to review your new Google Cloud Storage buckets Note the random string that was appended to your bucket name.

```bash
gsutil ls
gcloud storage ls
```

You will see the newly created GCS bucket listed as `gs://BUCKET_NAME`
Expand Down
5 changes: 2 additions & 3 deletions 06-Cloud-Function/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Cloud Foundation Toolkit Lab - 06-Cloud-Function
[![Open in Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.svg)](https://ssh.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fterraform-google-modules%2Fcloud-foundation-training&cloudshell_git_branch=master&cloudshell_open_in_editor=main.tf&cloudshell_tutorial=README.md&cloudshell_working_dir=06-Cloud-Function)

Expand Down Expand Up @@ -91,14 +90,14 @@ Verify the **Cloud Function** is deployed successfully

Under **06-Cloud-Function** folder, upload a sampe image to the upload bucket
```
gsutil cp images/zombie.jpg gs://`terraform output storage_bucket_image_upload`
gcloud storage cp images/zombie.jpg gs://`terraform output storage_bucket_image_upload`
```

On [Google Cloud Console](https://console.cloud.google.com/), navigate to **Storage -> Browser**

Locate the processed image bucket and checked processed image `zombie.jpg`
```bash
gsutil ls gs://`terraform output storage_bucket_image_processed`
gcloud storage ls gs://`terraform output storage_bucket_image_processed`
```

You can also view the Cloud Function logs from [Google Cloud Console](https://console.cloud.google.com/), navigate to **Logging -> Logs Viewer** and select Cloud Function from the dropdown list
Expand Down
Loading