How to delete aws config dashboard?

1.4k Views Asked by At

I have created dashboard and rules. I am not able to find the option for removing the dashboard. Rules i have deleted. Can anyone put forth his thought on that?

recording- view

When i tried to delete the associated roles it says this iAM Roles associated

And the recording i cant stop.

And the dashboard is showing this, dashboard-view

The problem is i cant delete completely dashboard unlike other aws services. Second, will there be any charges incurred for the opened dashboard? Any thoughts on that, is appreciated!!!

1

There are 1 best solutions below

0
On

As far as I know, there is no option to delete dashboard from management console currently. Please try to use aws command.

 aws configservice delete-configuration-recorder --configuration-recorder-name YOUR_CONFIGURATION_RECODER_NAME
 aws configservice delete-delivery-channel --delivery-channel-name YOUR_DELIVERY_CHANNEL_NAME

To check the YOUR_CONFIGURATION_RECODER_NAME and YOUR_DELIVERY_CHANNEL_NAME you can use the following commands:

aws configservice describe-configuration-recorders
aws configservice describe-delivery-channels

After deleting your delivery channel, you can delete IAM role (AWSServiceRoleForConfig). Please note the S3 bucket for AWS-config will still exist.

Please refer to https://docs.aws.amazon.com/cli/latest/reference/configservice/index.html