Skip to content

Commit 5e3be68

Browse files
author
Nils
committed
typos
1 parent 3f5df34 commit 5e3be68

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Update Google Cloud Consumer Quota Limits
22

3-
[![Bagde: Google Cloud](https://img.shields.io/badge/Google%20Cloud-%234285F4.svg?logo=google-cloud&logoColor=white)](https://github.com/Cyclenerd/terraform-google-quota-limits/blob/master/README.md)
4-
[![Badge: Terraform](https://img.shields.io/badge/Terraform-%235835CC.svg?logo=terraform&logoColor=white)](https://github.com/Cyclenerd/terraform-google-quota-limits/blob/master/README.md)
3+
[![Bagde: Google Cloud](https://img.shields.io/badge/Google%20Cloud-%234285F4.svg?logo=google-cloud&logoColor=white)](https://github.com/Cyclenerd/terraform-google-quota-limits#readme)
4+
[![Badge: Terraform](https://img.shields.io/badge/Terraform-%235835CC.svg?logo=terraform&logoColor=white)](https://github.com/Cyclenerd/terraform-google-quota-limits#readme)
55
[![Bagde: CI](https://github.com/Cyclenerd/terraform-google-quota-limits/actions/workflows/ci.yml/badge.svg)](https://github.com/Cyclenerd/terraform-google-quota-limits/actions/workflows/ci.yml)
66
[![Bagde: GitHub](https://img.shields.io/github/license/cyclenerd/terraform-google-quota-limits)](https://github.com/Cyclenerd/google-cloud-pricing-cost-calculator/blob/master/LICENSE)
77

88
Override consumer quota limits for Google Cloud Platform projects.
99
Ideal to limit the use of expensive CPUs and GPUs.
1010

11-
![Screenshot: C3 CPU Quotas](./img/quotas_c3_cpus.png)
11+
[![Screenshot: C3 CPU Quotas](./img/quotas_c3_cpus.png)](https://github.com/Cyclenerd/terraform-google-quota-limits#readme)
1212

1313
> **Warning**
1414
> This module cannot be used to grant more quota than would be allowed by admin overrides, producer overrides, or the default limit of the service.
@@ -23,7 +23,7 @@ are allowed.
2323

2424
```hcl
2525
module "secret" {
26-
source = "cyclenerd/quota-limits/google"
26+
source = "Cyclenerd/quota-limits/google"
2727
version = "1.0.0"
2828
project_id = "your-project-id"
2929
limits = {

examples/limit-instances/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ limits = {
2828

2929
```hcl
3030
module "quota-limits" {
31-
source = "cyclenerd/quota-limits/google"
31+
source = "Cyclenerd/quota-limits/google"
3232
version = "1.0.0"
3333
project_id = var.project_id
3434
limits = var.limits

examples/limit-instances/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module "quota-limits" {
2-
source = "../../"
2+
source = "Cyclenerd/quota-limits/google"
3+
version = "1.0.0"
34
project_id = var.project_id
45
limits = var.limits
56
}

0 commit comments

Comments
 (0)