Connect Akto with AWS API Gateway with CloudWatch OAM
Last updated
Was this helpful?
Last updated
Was this helpful?
AWS API Gateway is a fully managed service from AWS that helps developers create, publish, monitor, and secure APIs at scale. By integrating AWS API Gateway with Akto, you'll automatically discover and test the security of all your REST APIs, HTTP APIs, and WebSocket APIs deployed through API Gateway, ensuring comprehensive API security across your AWS infrastructure.
To connect Akto with AWS API Gateway using CloudWatch OAM, follow these steps:
Follow the steps mentioned here to set up the Akto Traffic Processor.
Go to API Gateway in the AWS Console.
Navigate to your API and click on Stages
from the left menu.
Scroll down to the Logs and tracing
section and click on Edit
.
Select Error and info logs
and Data tracing
and save these settings.
Find out the CloudWatch log group
for your API Gateway for the stage which has the above logs enabled and save it's arn. You'll need it later.
Note: Follow the OAM step only if you have an EKS cluster in one account and a CloudWatch log group in another account. Otherwise, you can skip this step.
CloudWatch OAM allows you to monitor and manage metrics and logs across multiple AWS accounts and regions, providing centralized visibility and simplified access management.
For more details, refer to the official AWS documentation: AWS OAM API Reference
Open the CloudWatch console in the monitoring account (where your EKS cluster is located).
In the left navigation bar, go to Settings.
Under Monitoring account configuration, choose Configure.
For Select data, choose the types of data this monitoring account will be able to view from the source accounts:
Logs
Metrics
(Generally, we only need logs.)
Under List source accounts, enter the account IDs of the source accounts (where your CloudWatch log groups are located) that this monitoring account will view.
Under Define a label to identify your source account, choose whether to use account names or email addresses.
Click Configure.
In Settings, under Monitoring account configuration, go to Resources to link accounts.
Choose Any account to generate a URL for linking source accounts.
Copy the generated URL.
Sign in to the account you want to set as a source account.
Enter the copied URL in your browser to open the CloudWatch settings page.
Under Select data, choose the data types that will be shared with the monitoring account:
Logs
Metrics
(Generally, only logs are needed, and specific logs can be filtered.)
For more information on filtering logs, refer to: AWS Log Group Configuration.
Ensure Enter monitoring account configuration ARN is not changed.
Under Define a label to identify your source account, the label choice from the monitoring account is pre-filled. Optionally, choose Edit to modify it.
Click Link.
Enter Confirm in the box and click Confirm.
The linking process might take a few minutes to complete.
If you don’t have an existing EKS cluster, you can create one using the AWS Console:
Go to the Amazon EKS service in the AWS Management Console.
Click on Create Cluster.
Provide a name for your cluster and select the Kubernetes version.
Choose the networking settings (VPC, subnets, security groups).
Select an IAM role for the cluster.
Select an IAM role for the node.
Configure other optional settings and click Create.
Copy the OpenID Connect (OIDC) provider URL from the Overview section of your EKS cluster. (You can find this under EKS > Your Cluster > Overview > Details.)
Go to the IAM service in the AWS Console.
Click Policies on the left panel, then click Create policy.
Select JSON as Policy editor.
Paste the following JSON schema in the policy editor.
Replace <YOUR_LOG_GROUP_ARN>
with the CloudWatch log group arn saved in Step 1.2.
Click Next and review the permissions.
After reviewing the permissions, click the Save Changes button.
Go to the IAM service in the AWS Console.
Click Roles on the left panel, then click Create role.
Select Web Identity as the trusted entity.
Choose your EKS OIDC provider and enter the audience as sts.amazonaws.com
.
Click Next and move to the permissions step.
Choose the policy we created in the previous step (4.1).
Click Next, give the role a name, and create the role. (Save the role name as it will be needed later.)
After creating the role, modify the trust policy in the Trust relationships section of the role created in the previous step.
Replace <your-region>
with your AWS region. (Find it in the top-right corner of the AWS Console.)
Replace <your-account-id>
with your AWS account ID. (You can find this under IAM > Account Settings.)
Replace <your-oidc-provider-id>
with the OIDC provider ID from Step 2.
Replace <your-namespace>
with the Kubernetes namespace where the service account will be deployed. (Use kubectl get namespaces
to check existing namespaces.)
Save the trust policy.
Create a service-account.yaml
file with the following content:
Replace <aws-account-id>
with your AWS account ID.
Replace <role-name>
with the IAM role name created in Step 4.2.
Replace <your-namespace>
with the Kubernetes namespace where the service account will be deployed (use kubectl get namespaces
to check existing namespaces). This should be the same as the one used in step 4.3.
Apply the service-account.yaml
file to your EKS cluster using the following kubectl
command: kubectl apply -f service-account.yaml
For LOG_GROUP_NAME
and AWS_REGION
, use the log group arn we saved earlier and the aws region it is deployed in.
For AKTO_KAFKA_BROKER_MAL
, use the value of the mini-runtime
service we deployed in step 1.1.
Replace <your-namespace>
with the Kubernetes namespace used in Step 5.
Notes:
For assigning an IAM role to a Kubernetes service account, you can refer here.
In-app support: Message us in the Akto dashboard.
Join our Discord channel for community support.
Email: Contact help@akto.io
.
Contact us here.