Skip to content

Commit 5650417

Browse files
authored
Remove ECS-EC2 Deprecated cfn template parameter (#126)
1 parent f15f74c commit 5650417

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

opentelemetry/ecs-ec2/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
### 0.0.11 / 2024-04-05
3+
- Remove deprecated PrivateKey Param from ecs-ec2 otel deployment
4+
25
### 0.0.10 / 2024-03-21
36
- [cds-1099] set default force_flush_period parameter to 0 for ecs-ec2 otel filelog receiver
47

opentelemetry/ecs-ec2/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ A GRPC(*4317*) and HTTP(*4318*) endpoint is exposed for sending traces to the lo
5050
| ApplicationName | You application name | | :heavy_check_mark: |
5151
| SubsystemName | You Subsystem name | AWS Account ID | :heavy_check_mark: |
5252
| CoralogixApiKey | The Send-Your-Data API key for your Coralogix account. See: https://coralogix.com/docs/send-your-data-api-key/ | | :heavy_check_mark: |
53-
| PrivateKey :warning::no_entry:__Deprecated__.:no_entry::warning: | :warning::no_entry:__Deprecated__.:no_entry::warning: Do not use. Hard-replaced by `CoralogixApiKey`. Must be null. Formerly: Your Coralogix Private Key. | | :no_entry: |
5453
| Metrics | Enable/Disable Metrics | disable | |
5554
| OtelConfig | The Base64 encoded Open Telemetry configuration yaml to use. This parameter allows you to pass your own Open Telemetry configuration. This will be used instead of the embedded configuration if specified. | | |
5655

@@ -63,7 +62,7 @@ aws cloudformation deploy --template-file template.yaml --stack-name <stack_name
6362
DefaultApplicationName=<application name> \
6463
CDOTImageVersion=<image tag> \
6564
ClusterName=<ecs cluster name> \
66-
PrivateKey=<your-private-key> \
65+
CoralogixApiKey=<your-private-key> \
6766
CoralogixRegion=<coralogix-region>
6867
```
6968

@@ -76,7 +75,7 @@ aws cloudformation deploy --template-file cfn_template.yaml --stack-name <stack_
7675
DefaultApplicationName=<application name> \
7776
ClusterName=<ecs cluster name> \
7877
CDOTImageVersion=<image tag> \
79-
PrivateKey=<your-private-key> \
78+
CoralogixApiKey=<your-private-key> \
8079
OtelConfig=$(cat path/to/otelconfig.yaml | base64) \
8180
CoralogixRegion=<coralogix-region>
8281
```

opentelemetry/ecs-ec2/template.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,6 @@ Parameters:
6767
AllowedPattern: ".+"
6868
ConstraintDescription: "API Key required."
6969

70-
PrivateKey:
71-
Type: String
72-
Description: "Deprecated. Do not use. Hard-replaced by \"CoralogixApiKey\". Formerly: The Coralogix private key which is used to validate your authenticity."
73-
Default: "DO-NOT-USE"
74-
AllowedPattern: "^DO-NOT-USE$" # hard-deprecate.
75-
NoEcho: true
76-
7770
Metrics:
7871
Type: String
7972
Description: If true, cadivisor will be deployed on each node to collect metrics

0 commit comments

Comments
 (0)