Is there a way to create AWS Dashboard using cloudformation or AWS CLI

I wanted to create an AWS dashboard using cloudformation, but found a way. Guess aws hasn't added any support yet.

Alternatively, you can create this using the AWS CLI

+5
source share
2 answers

If I am right, your question causes Resource Group problems. It is currently not possible to create a resource group in cloud development templates or through awscli.

Resource groups are tied to the user, not to the account - therefore, it is impossible to define them at the account level and allow users to access them.

A user can " Share" in the resource group that they created by passing the URL to another user.

0
source

Source: https://habr.com/ru/post/1257389/


All Articles