Configure AWS Access
Configuring access to your AWS account for FinOps for Cloud requires the creation of two policies for billing imports and resource discovery, and a trusted role (recommended) or IAM user.
AWS IAM Policies
Create a policy for billing imports
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "FinOpsForCloudGetBillingFiles",
"Effect": "Allow",
"Action": [
"s3:GetObject"
],
"Resource": "arn:aws:s3:::<bucket_name>/*"
},
{
"Sid": "FinOpsForCloudManageBillingBucket",
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:ListBucket",
"s3:PutBucketPolicy",
"s3:PutObject"
],
"Resource": "arn:aws:s3:::<bucket_name>"
}
]
}Create a policy for resource discovery
AWS IAM assumed role
Creating a new IAM role
AWS IAM user and access key
Creating a new IAM user
Creating an access key for FinOps for Cloud
Last updated
Was this helpful?