Skip to content

Commit f6a4c31

Browse files
authored
fix: eks permissions (#71)
* Update bug report template * Fix net permissions
1 parent 07545ac commit f6a4c31

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ body:
1818
- type: checkboxes
1919
id: terms
2020
attributes:
21-
label: Welcome to Amazon EKS Blueprints!
21+
label: Welcome to the AWS Observability Accelerator
2222
options:
2323
- 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
2727
attributes:
28-
label: Amazon EKS Blueprints Release version
28+
label: AWS Observability Accelerator Release version
2929
description: |
3030
`latest` is not considered as a valid version.
3131
Enter release number!

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,11 @@ resource "kubernetes_cluster_role_v1" "adot" {
166166
resource_names = ["opentelemetry-operator-mutating-webhook-configuration", "opentelemetry-operator-validating-webhook-configuration"]
167167
verbs = ["create", "delete", "get", "list", "patch", "update", "watch"]
168168
}
169+
rule {
170+
api_groups = ["networking.k8s.io"]
171+
resources = ["ingresses"]
172+
verbs = ["create", "delete", "get", "list", "patch", "update", "watch"]
173+
}
169174
rule {
170175
non_resource_urls = ["/metrics"]
171176
verbs = ["get"]

0 commit comments

Comments
 (0)