Skip to main content

Prerrequisites

  • AWS API Connectivity
    The plugin is a binary that contains the packaged dependencies so it is not necessary to install any type of dependency for its use.
  • Permissions
    To make requests through the API, the account used to authenticate during execution requires certain permissions.

 

Permission Assignment

Create a policy in JSON like the following:

{
   "Version": "2012-10-17",
   "Statement": [
       {
           "Sid": "VisualEditor0",
           "Effect": "Allow",
           "Action": [
  			   "rds:DescribeDBInstances",
               "cloudwatch:Get*",
           ],
           "Resource": "*"
       }
   ]
}

The previous policy must be assigned to a new user.

image.png