Skip to content

Commit df314a4

Browse files
Bonthubonclay7
authored andcommitted
Org updated to repo
1 parent 78c15b5 commit df314a4

File tree

12 files changed

+17
-15
lines changed

12 files changed

+17
-15
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ body:
2020
attributes:
2121
label: Welcome to Amazon EKS Blueprints!
2222
options:
23-
- label: Yes, I've searched similar issues on [GitHub](https://github.com/aws-ia/terraform-aws-observability-accelerator/issues) and didn't find any.
23+
- label: Yes, I've searched similar issues on [GitHub](https://github.com/aws-observability/terraform-aws-observability-accelerator/issues) and didn't find any.
2424
required: true
2525

2626
- type: input

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
<!-- A brief description of the change being made with this pull request. -->
55

6+
🛑 Please open an issue first to discuss any significant work and flesh out details/direction - we would hate for your time to be wasted. Consult the CONTRIBUTING guide for submitting pull-requests.
7+
68

79
### Motivation
810

@@ -12,9 +14,9 @@
1214
### More
1315

1416
- [ ] Yes, I have tested the PR using my local account setup (Provide any test evidence report under Additional Notes)
15-
- [ ] Yes, I have added a new example under [examples](https://github.com/aws-ia/terraform-aws-eks-blueprints/tree/main/examples) to support my PR
17+
- [ ] Yes, I have added a new example under [examples](https://github.com/aws-observability/terraform-aws-eks-blueprints/tree/main/examples) to support my PR
1618
- [ ] Yes, I have created another PR for add-ons under [add-ons](https://github.com/aws-samples/eks-blueprints-add-ons) repo (if applicable)
17-
- [ ] Yes, I have updated the [docs](https://github.com/aws-ia/terraform-aws-eks-blueprints/tree/main/docs) for this feature
19+
- [ ] Yes, I have updated the [docs](https://github.com/aws-observability/terraform-aws-eks-blueprints/tree/main/docs) for this feature
1820
- [ ] Yes, I ran `pre-commit run -a` with this PR
1921

2022

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Require approvals from someone in the owner team before merging
22
# More information here: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
33

4-
* @aws-ia/aws-observability-accelerator
4+
* @aws-observability/aws-observability-accelerator

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more inform
102102

103103
## License
104104

105-
Apache-2.0 Licensed. See [LICENSE](https://github.com/aws-ia/terraform-aws-eks-blueprints/blob/main/LICENSE).
105+
Apache-2.0 Licensed. See [LICENSE](https://github.com/aws-observability/terraform-aws-eks-blueprints/blob/main/LICENSE).

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AWS Observability Accelerator for Terraform
22

3-
![GitHub](https://img.shields.io/github/license/aws-ia/terraform-aws-observability-accelerator)
3+
![GitHub](https://img.shields.io/github/license/aws-observability/terraform-aws-observability-accelerator)
44

55
Welcome to AWS Observability Accelerator for Terraform!
66

examples/existing-cluster-with-base-and-infra/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ locals {
4242
eks_cluster_version = data.aws_eks_cluster.this.version
4343

4444
tags = {
45-
Source = "github.com/aws-ia/terraform-aws-observability-accelerator"
45+
Source = "github.com/aws-observability/terraform-aws-observability-accelerator"
4646
}
4747
}
4848

4949
# deploys the base module
5050
module "eks_observability_accelerator" {
51-
# source = "aws-ia/terrarom-aws-observability-accelerator"
51+
# source = "aws-observability/terrarom-aws-observability-accelerator"
5252
source = "../../"
5353

5454
aws_region = var.aws_region
@@ -91,7 +91,7 @@ provider "grafana" {
9191

9292
module "workloads_infra" {
9393
source = "../../modules/workloads/infra"
94-
# source = "aws-ia/terrarom-aws-observability-accelerator/workloads/infra"
94+
# source = "aws-observability/terrarom-aws-observability-accelerator/workloads/infra"
9595

9696
eks_cluster_id = module.eks_observability_accelerator.eks_cluster_id
9797

modules/add-ons/adot-operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ the ADOT Operator.
4141

4242
| Name | Source | Version |
4343
|------|--------|---------|
44-
| <a name="module_cert_manager"></a> [cert\_manager](#module\_cert\_manager) | github.com/aws-ia/terraform-aws-eks-blueprints/modules/kubernetes-addons/cert-manager | n/a |
44+
| <a name="module_cert_manager"></a> [cert\_manager](#module\_cert\_manager) | github.com/aws-observability/terraform-aws-eks-blueprints/modules/kubernetes-addons/cert-manager | n/a |
4545

4646
## Resources
4747

modules/add-ons/adot-operator/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "cert_manager" {
2-
source = "github.com/aws-ia/terraform-aws-eks-blueprints/modules/kubernetes-addons/cert-manager"
2+
source = "github.com/aws-observability/terraform-aws-eks-blueprints/modules/kubernetes-addons/cert-manager"
33
count = var.enable_cert_manager ? 1 : 0
44

55
helm_config = { version = "v1.8.2" }

modules/workloads/infra/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ It provides the following resources:
2626

2727
| Name | Source | Version |
2828
|------|--------|---------|
29-
| <a name="module_helm_addon"></a> [helm\_addon](#module\_helm\_addon) | github.com/aws-ia/terraform-aws-eks-blueprints/modules/kubernetes-addons/helm-addon | n/a |
29+
| <a name="module_helm_addon"></a> [helm\_addon](#module\_helm\_addon) | github.com/aws-observability/terraform-aws-eks-blueprints/modules/kubernetes-addons/helm-addon | n/a |
3030

3131
## Resources
3232

modules/workloads/infra/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ resource "helm_release" "prometheus_node_exporter" {
4444
}
4545

4646
module "helm_addon" {
47-
source = "github.com/aws-ia/terraform-aws-eks-blueprints/modules/kubernetes-addons/helm-addon"
47+
source = "github.com/aws-observability/terraform-aws-eks-blueprints/modules/kubernetes-addons/helm-addon"
4848

4949
helm_config = merge(
5050
{

0 commit comments

Comments
 (0)