Skip to content

Commit 973c342

Browse files
committed
docs: Update documentation for name change to align with AMP module
1 parent 583cead commit 973c342

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# AWS Managed Grafana Terraform module
1+
# AWS Managed Service for Grafana (AMG) Terraform module
22

3-
Terraform module which creates AWS Managed Grafana resources.
3+
Terraform module which creates AWS Managed Service for Grafana (AMG) resources.
44

55
## Usage
66

7-
See [`examples`](https://github.com/clowdhaus/terraform-aws-managed-grafana/tree/main/examples) directory for working examples to reference:
7+
See [`examples`](https://github.com/clowdhaus/terraform-aws-managed-service-grafana/tree/main/examples) directory for working examples to reference:
88

99
```hcl
1010
module "managed_grafana" {
11-
source = "clowdhaus/managed-grafana/aws"
11+
source = "clowdhaus/managed-service-grafana/aws"
1212
1313
# Workspace
1414
name = "example"
@@ -49,9 +49,9 @@ module "managed_grafana" {
4949

5050
## Examples
5151

52-
Examples codified under the [`examples`](https://github.com/clowdhaus/terraform-aws-managed-grafana/tree/main/examples) are intended to give users references for how to use the module(s) as well as testing/validating changes to the source code of the module. If contributing to the project, please be sure to make any appropriate updates to the relevant examples to allow maintainers to test your changes and to keep the examples up to date for users. Thank you!
52+
Examples codified under the [`examples`](https://github.com/clowdhaus/terraform-aws-managed-service-grafana/tree/main/examples) are intended to give users references for how to use the module(s) as well as testing/validating changes to the source code of the module. If contributing to the project, please be sure to make any appropriate updates to the relevant examples to allow maintainers to test your changes and to keep the examples up to date for users. Thank you!
5353

54-
- [Complete](https://github.com/clowdhaus/terraform-aws-managed-grafana/tree/main/examples/complete)
54+
- [Complete](https://github.com/clowdhaus/terraform-aws-managed-service-grafana/tree/main/examples/complete)
5555

5656
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
5757
## Requirements
@@ -142,4 +142,4 @@ No modules.
142142

143143
## License
144144

145-
Apache-2.0 Licensed. See [LICENSE](https://github.com/clowdhaus/terraform-aws-managed-grafana/blob/main/LICENSE).
145+
Apache-2.0 Licensed. See [LICENSE](https://github.com/clowdhaus/terraform-aws-managed-service-grafana/blob/main/LICENSE).

examples/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Terraform AWS Managed Grafana Examples
1+
# Terraform AWS Managed Service for Grafana (AMG) Examples
22

3-
- [Complete](https://github.com/clowdhaus/terraform-aws-managed-grafana/tree/main/examples/complete)
3+
- [Complete](https://github.com/clowdhaus/terraform-aws-managed-service-grafana/tree/main/examples/complete)

examples/complete/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Complete AWS Managed Grafana Example
1+
# Complete AWS Managed Service for Grafana (AMG) Example
22

33
Configuration in this directory creates:
44

@@ -61,4 +61,4 @@ No inputs.
6161
| <a name="output_workspace_iam_role_unique_id"></a> [workspace\_iam\_role\_unique\_id](#output\_workspace\_iam\_role\_unique\_id) | Stable and unique string identifying the IAM role |
6262
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
6363

64-
Apache-2.0 Licensed. See [LICENSE](https://github.com/clowdhaus/terraform-aws-managed-grafana/blob/main/LICENSE).
64+
Apache-2.0 Licensed. See [LICENSE](https://github.com/clowdhaus/terraform-aws-managed-service-grafana/blob/main/LICENSE).

examples/complete/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ provider "aws" {
44

55
locals {
66
region = "us-east-1"
7-
name = "managed-grafana-ex-${replace(basename(path.cwd), "_", "-")}"
7+
name = "amg-ex-${replace(basename(path.cwd), "_", "-")}"
88
description = "AWS Managed Grafana service for ${local.name}"
99

1010
tags = {
1111
Name = local.name
1212
Example = local.name
13-
Repository = "https://github.com/clowdhaus/terraform-aws-managed-grafana"
13+
Repository = "https://github.com/clowdhaus/terraform-aws-managed-service-grafana"
1414
}
1515
}
1616

0 commit comments

Comments
 (0)