Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## infrastructure explorer

### 0.0.6 / 5.11.2025 Add RDS permissions

- [update] Scanning for RDS instances
- [update] Scanning for Lambda functions
- [update] Scanning for EBS volumes
- [update] Scanning for S3 buckets

### 0.0.5 /4.9.2025 Add output to the role that the module will create

- [update] Add output `ExternalId` to the role that the module will create
Expand All @@ -14,7 +21,7 @@

### 0.0.3 / 30.9.2024
* [update] Add ec2:DescribeNetworkInterfaces
*
*
### 0.0.2 / 2.9.2024
* [update] Add option to run module in AP3 region

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AWSTemplateFormatVersion: 2010-09-09
Description: The module will create a role to allow Coralogix scrape AWS infrastructure metadata
Description: The module will create a role to allow Coralogix to scrape AWS infrastructure metadata
Parameters:
ExternalIdSecret:
Description: "ExternalIdSecret for sts:AssumeRole"
Expand Down Expand Up @@ -83,7 +83,11 @@ Resources:
- aws_account_id: !If
- IsCustomAWSAccountId
- !Ref CustomAWSAccountId
- !FindInMap [CoralogixEnvironment, !Ref CoralogixRegion, "ID"]
- !FindInMap [
CoralogixEnvironment,
!Ref CoralogixRegion,
"ID",
]
role_suffix:
!FindInMap [
CoralogixEnvironment,
Expand All @@ -110,6 +114,33 @@ Resources:
- "ec2:DescribeRegions"
- "ec2:DescribeTransitGateway*"
- "ec2:DescribeNetworkInterfaces"
- "ec2:DescribeVolumes"
Resource: "*"
- PolicyName: CoralogixDescribeRdsPolicy
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- "rds:DescribeDBInstances"
- "rds:DescribeReservedDBInstances"
Resource: "*"
- PolicyName: CoralogixListLambdaPolicy
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- "lambda:ListFunctions"
Resource: "*"
- PolicyName: CoralogixListS3Policy
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- "s3:ListAllMyBuckets"
- "s3express:ListAllMyDirectoryBuckets"
Resource: "*"

Outputs:
Expand Down