Skip to content

Commit 2c1dae8

Browse files
authored
Merge pull request #88 from jcsobrino/NR-94784-Deploy_more_than_once_per_account_region
feat: Allow installing the integration more than once per account and region
2 parents 1043b44 + 7418572 commit 2c1dae8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws-log-ingestion"
3-
version = "2.7.1"
3+
version = "2.8.0"
44
description = ""
55
authors = ["New Relic <[email protected]>"]
66
license = "Apache 2.0"

template.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Metadata:
6262
LicenseUrl: LICENSE
6363
ReadmeUrl: README.md
6464
HomePageUrl: https://github.com/newrelic/aws-log-ingestion
65-
SemanticVersion: 2.7.1
65+
SemanticVersion: 2.8.0
6666
SourceCodeUrl: https://github.com/newrelic/aws-log-ingestion
6767

6868
Resources:
@@ -74,7 +74,7 @@ Resources:
7474
CodeUri: src/
7575
Description: Sends log data from CloudWatch Logs to New Relic Infrastructure (Cloud integrations) and New Relic Logging
7676
Handler: function.lambda_handler
77-
FunctionName: newrelic-log-ingestion
77+
FunctionName: !Join ['-', ['newrelic-log-ingestion', !Select [4, !Split ['-', !Select [2, !Split ['/', !Ref AWS::StackId]]]]]]
7878
MemorySize:
7979
Ref: MemorySize
8080
Runtime: python3.9
@@ -96,7 +96,7 @@ Resources:
9696
CodeUri: src/
9797
Description: Sends log data from CloudWatch Logs to New Relic Infrastructure (Cloud integrations) and New Relic Logging
9898
Handler: function.lambda_handler
99-
FunctionName: newrelic-log-ingestion
99+
FunctionName: !Join ['-', ['newrelic-log-ingestion', !Select [4, !Split ['-', !Select [2, !Split ['/', !Ref AWS::StackId]]]]]]
100100
MemorySize:
101101
Ref: MemorySize
102102
Runtime: python3.9

0 commit comments

Comments
 (0)