-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the `GuWazuhAccess` class which adds a security group of logical ID `WazuhSecurityGroup` to any stack using `GuAutoScalingGroup` either directly or via a pattern.
- Loading branch information
Showing
10 changed files
with
45 additions
and
492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
"@guardian/cdk": minor | ||
--- | ||
|
||
Removes `GuWazuhAccess` security group as Wazuh has been deprecated. | ||
|
||
This change will remove a resource of logical ID `WazuhSecurityGroup` from stacks that use a `GuAutoScalingGroup`. | ||
The snapshot diff will include the removal of the following resource: | ||
|
||
```json | ||
{ | ||
"Resources": { | ||
"WazuhSecurityGroup": { | ||
"Properties": { | ||
"GroupDescription": "Allow outbound traffic from wazuh agent to manager", | ||
"SecurityGroupEgress": [ | ||
{ | ||
"CidrIp": "0.0.0.0/0", | ||
"Description": "Wazuh event logging", | ||
"FromPort": 1514, | ||
"IpProtocol": "tcp", | ||
"ToPort": 1514 | ||
}, | ||
{ | ||
"CidrIp": "0.0.0.0/0", | ||
"Description": "Wazuh agent registration", | ||
"FromPort": 1515, | ||
"IpProtocol": "tcp", | ||
"ToPort": 1515 | ||
} | ||
], | ||
"Type": "AWS::EC2::SecurityGroup" | ||
} | ||
} | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
export * from "./base"; | ||
export * from "./wazuh"; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.