1 Answer
- Newest
- Most votes
- Most comments
3
You deleted the Config delivery channels but now error shows that Config Configuration Recorder exists. Please follow the next document:
https://docs.aws.amazon.com/controltower/latest/userguide/troubleshooting.html#aws-config-error
Delete the configuration recorder and delivery channel in all supported regions. Disabling AWS Config is not enough, the configuration recorder and delivery channel must be deleted by means of the CLI.
View commands:
aws configservice describe-delivery-channels
aws configservice describe-delivery-channel-status
aws configservice describe-configuration-recorders
The normal response is something like "name": "default"
Delete commands:
aws configservice stop-configuration-recorder --configuration-recorder-name NAME-FROM-DESCRIBE-OUTPUT
aws configservice delete-delivery-channel --delivery-channel-name NAME-FROM-DESCRIBE-OUTPUT
aws configservice delete-configuration-recorder --configuration-recorder-name NAME-FROM-DESCRIBE-OUTPUT
Relevant content
- asked 4 months ago
- asked 2 years ago
- asked 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
I attempted this through the CLI with the specified regions, but the issue still persists.
Did you do it for all AWS accounts in your organization?