如何创建在 Python CDK 中引用自身的 API 网关资源策略?
How to create API Gateway Resource Policy that references itself in the Python CDK?
我正在创建一个 API,它将 仅 接受来自 GitHub Webhook 服务器的请求,方法是使用 [=45] 的资源策略=] IP。我已使用控制台并手动创建资源策略成功完成此操作,但在使用 CDK 时我 运行 遇到了问题。
这是我的代码:
delete_trigger_integration = aws_apigateway.LambdaIntegration(
trigger_step_lambda, proxy=False, integration_responses=[])
api_policy_document = aws_iam.PolicyDocument()
api = aws_apigateway.RestApi(
self,
"GithubWebhookApi",
rest_api_name=PROJECT_NAME + "-apigateway-trigger-delete",
default_integration=delete_trigger_integration,
policy=api_policy_document)
delete_execution_resource = api.root.add_resource("execution")
delete_execution_method = delete_execution_resource.add_method(
"POST", delete_trigger_integration)
delete_execution_resource.add_cors_preflight(allow_origins=["*"])
create_repo_lambda.add_environment("API_URL",
delete_execution_resource.url)
api_policy_document.add_statements(
aws_iam.PolicyStatement(
effect=aws_iam.Effect.ALLOW,
principals=[aws_iam.AnyPrincipal()],
actions=["execute-api:Invoke"],
resources=[api.arn_for_execute_api()]))
api_policy_document.add_statements(
aws_iam.PolicyStatement(
effect=aws_iam.Effect.DENY,
actions=["execute-api:Invoke"],
conditions={
"NotIpAddress": {
"aws:SourceIp": [
"192.30.252.0/22", "185.199.108.0/22",
"140.82.112.0/20"
]
}
},
principals=[aws_iam.AnyPrincipal()],
resources=[api.arn_for_execute_api()]))
我觉得我非常 接近找到解决方案,但我不知道它是什么。上面代码的问题是我在尝试部署它时遇到 ValidationError: Circular dependency between resources
错误 - 我可以理解,资源策略正在处理它所在的资源。但是我在 CDK 中找不到解决方法。
对于其他资源,在创建后使用 aws_iam.add_to_role_policy
添加 IAM 策略真的很容易,但我在 CDK 中找不到 RestApi
class 的等效项。看来你 有 在声明 RestApi
.
时添加 PolicyDocument
此外,这是我试图在 CDK 中重新创建的资源策略(正是这些资源 ARN 导致了问题):
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": "*",
"Action": "execute-api:Invoke",
"Resource": "arn:aws:execute-api:eu-west-1:000000000000:aaaaaaaaaa/*/*/*"
},
{
"Effect": "Deny",
"Principal": "*",
"Action": "execute-api:Invoke",
"Resource": "arn:aws:execute-api:eu-west-1:000000000000:aaaaaaaaaa/*/*/*",
"Condition": {
"NotIpAddress": {
"aws:SourceIp": [
"192.30.252.0/22",
"185.199.108.0/22",
"140.82.112.0/20"
]
}
}
}
]
}
有谁知道我的问题的解决方案吗?提前致谢!
此外,您可以忽略空的集成响应 - 我仍在努力。
这与底层 CloudFormation 资源的工作方式有关。
作为 Policy
must be defined within the AWS::ApiGateway::RestApi
资源,它不能引用自身。
To set the ARN for the policy, use the !Join
intrinsic function with ""
as delimiter and values of "execute-api:/"
and "*"
.
在您的 CDK 代码中转换为以下内容:
resources=[core.Fn.join('', ['execute-api:/', '*'])]
我正在创建一个 API,它将 仅 接受来自 GitHub Webhook 服务器的请求,方法是使用 [=45] 的资源策略=] IP。我已使用控制台并手动创建资源策略成功完成此操作,但在使用 CDK 时我 运行 遇到了问题。
这是我的代码:
delete_trigger_integration = aws_apigateway.LambdaIntegration(
trigger_step_lambda, proxy=False, integration_responses=[])
api_policy_document = aws_iam.PolicyDocument()
api = aws_apigateway.RestApi(
self,
"GithubWebhookApi",
rest_api_name=PROJECT_NAME + "-apigateway-trigger-delete",
default_integration=delete_trigger_integration,
policy=api_policy_document)
delete_execution_resource = api.root.add_resource("execution")
delete_execution_method = delete_execution_resource.add_method(
"POST", delete_trigger_integration)
delete_execution_resource.add_cors_preflight(allow_origins=["*"])
create_repo_lambda.add_environment("API_URL",
delete_execution_resource.url)
api_policy_document.add_statements(
aws_iam.PolicyStatement(
effect=aws_iam.Effect.ALLOW,
principals=[aws_iam.AnyPrincipal()],
actions=["execute-api:Invoke"],
resources=[api.arn_for_execute_api()]))
api_policy_document.add_statements(
aws_iam.PolicyStatement(
effect=aws_iam.Effect.DENY,
actions=["execute-api:Invoke"],
conditions={
"NotIpAddress": {
"aws:SourceIp": [
"192.30.252.0/22", "185.199.108.0/22",
"140.82.112.0/20"
]
}
},
principals=[aws_iam.AnyPrincipal()],
resources=[api.arn_for_execute_api()]))
我觉得我非常 接近找到解决方案,但我不知道它是什么。上面代码的问题是我在尝试部署它时遇到 ValidationError: Circular dependency between resources
错误 - 我可以理解,资源策略正在处理它所在的资源。但是我在 CDK 中找不到解决方法。
对于其他资源,在创建后使用 aws_iam.add_to_role_policy
添加 IAM 策略真的很容易,但我在 CDK 中找不到 RestApi
class 的等效项。看来你 有 在声明 RestApi
.
PolicyDocument
此外,这是我试图在 CDK 中重新创建的资源策略(正是这些资源 ARN 导致了问题):
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": "*",
"Action": "execute-api:Invoke",
"Resource": "arn:aws:execute-api:eu-west-1:000000000000:aaaaaaaaaa/*/*/*"
},
{
"Effect": "Deny",
"Principal": "*",
"Action": "execute-api:Invoke",
"Resource": "arn:aws:execute-api:eu-west-1:000000000000:aaaaaaaaaa/*/*/*",
"Condition": {
"NotIpAddress": {
"aws:SourceIp": [
"192.30.252.0/22",
"185.199.108.0/22",
"140.82.112.0/20"
]
}
}
}
]
}
有谁知道我的问题的解决方案吗?提前致谢!
此外,您可以忽略空的集成响应 - 我仍在努力。
这与底层 CloudFormation 资源的工作方式有关。
作为 Policy
must be defined within the AWS::ApiGateway::RestApi
资源,它不能引用自身。
To set the ARN for the policy, use the
!Join
intrinsic function with""
as delimiter and values of"execute-api:/"
and"*"
.
在您的 CDK 代码中转换为以下内容:
resources=[core.Fn.join('', ['execute-api:/', '*'])]