Image-Resizing-project-on-aws

(★ 9)

No description available.

File Explorer

  • backend.tf
  • CreateThumbnail.zip
  • iam-policy.tf
  • iam-role.tf
  • lambda-function.tf
  • lambda_policy.json
  • lambda_role.json
  • locals.tf
  • providers.tf
  • README.md
  • s3-bucket.tf
  • sns-topic.tf
  • variables.tf

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

aws logs

View Details ▼

Interact with log files from various AWS services.

aws logs list-log-groups

List log groups:

aws logs tail {{log_group_name}} --follow

Continuously poll logs of a CloudWatch log group:

aws logs tail {{log_group_name}} --filter-pattern {{pattern}}

Tail the logs of a CloudWatch log group based on a filter:

🔍

terraform apply

View Details ▼

Create or update infrastructure according to Terraform configuration files.

terraform apply

Create or update infrastructure:

terraform apply -auto-approve

Create or update infrastructure, skipping interactive approval:

terraform apply {{path/to/file.tfplan}}

Apply a plan file:

🔍

terraform destroy

View Details ▼

Destroy all objects managed by a Terraform configuration.

terraform destroy

Destroy all infrastructure in the current directory:

terraform destroy -auto-approve

Destroy infrastructure, skipping interactive approval:

terraform destroy -target {{resource_type.resource_name[instance_index]}}

Destroy a specific resource:

🔍

terraform init

View Details ▼

Initialize a new or existing Terraform working directory.

terraform init

Initialize the current working directory:

terraform init -upgrade

Initialize and upgrade modules and providers to the latest allowed versions:

terraform init -reconfigure

Initialize and reconfigure the backend, ignoring any saved configuration:

🔍

terraform plan

View Details ▼

Generate and show Terraform execution plans.

terraform plan

Generate and show the execution plan in the current directory:

terraform plan -destroy

Show a plan to destroy all remote objects that currently exist:

terraform plan -refresh-only

Show a plan to update the Terraform state and output values:

🔍

yes

View Details ▼

Output something repeatedly.
This command is commonly used to answer yes to every prompt by install commands (such as `apt-get`).

yes

Repeatedly output `y`:

yes {{value}}

Repeatedly output a specified value:

yes | sudo apt-get install {{program}}

Accept everything prompted by the `apt-get` command:

// repository documentation