Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core: permissions boundary not being applied to custom resource role #30179

Open
adamtimmins opened this issue May 13, 2024 · 16 comments
Open

core: permissions boundary not being applied to custom resource role #30179

adamtimmins opened this issue May 13, 2024 · 16 comments
Labels
@aws-cdk/core Related to core CDK functionality bug This issue is a bug. effort/medium Medium work item – several days of effort p1

Comments

@adamtimmins
Copy link

Describe the bug

I'm deploying a stack through CDK pipelines and have a permissions boundary configured within cdk.json. Every role is being configured app wide with the permissions boundary apart from one which seems to be created by CDK itself for my AwsCustomResource.

Expected Behavior

I expect the permissions boundary to be applied the CDK application app wide and not miss any roles deployed by the CDK application

Current Behavior

The CDK created role is failing to add the permissions boundary to the application.

Reproduction Steps

CDK pipelines is being deployed using bootstrapped roles with a custom qualifier and where the permission boundary is required.

synth_object = cdk.DefaultStackSynthesizer(
    qualifier=config["cdk_synth_qualifier"],
)

AwsCustomResource

response = AwsCustomResource(
    self,
    "describe-enis",
    on_update={
        "service": "EC2",
        "action": "describeNetworkInterfaces",
        "output_paths": output_paths,
        "parameters": {"NetworkInterfaceIds": eni_ids},
        "physical_resource_id": PhysicalResourceId.of(str(random.random())),
    },
    policy=AwsCustomResourcePolicy.from_statements(
        statements=[
            iam.PolicyStatement(
                effect=iam.Effect.ALLOW,
                actions=["ec2:DescribeNetworkInterfaces"],
                resources=["*"],
            ),
        ],
    ),
)

The role in question not being provided the permission boundary
AWSCDKCfnUtilsProviderCustomResourceProviderRoleFE0EE867

"AWSCDKCfnUtilsProviderCustomResourceProviderRoleFE0EE867": {
   "Type": "AWS::IAM::Role",
   "Properties": {
    "AssumeRolePolicyDocument": {
     "Version": "2012-10-17",
     "Statement": [
      {
       "Action": "sts:AssumeRole",
       "Effect": "Allow",
       "Principal": {
        "Service": "lambda.amazonaws.com"
       }
      }
     ]
    },
    "ManagedPolicyArns": [
     {
      "Fn::Sub": "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"
     }
    ]
   },

The cdk.json config

"@aws-cdk/core:permissionsBoundary": {
      "name": "cdk-permissions-boundary-policy"
    }

Possible Solution

No response

Additional Information/Context

I have tried adding the permission boundary to the stack itself, as well as the custom resource itself following the documentation here: https://docs.aws.amazon.com/cdk/api/v1/python/aws_cdk.aws_iam/README.html#permissions-boundaries

I have also tried creating a custom aspect to add the stack and the stage but none of these worked either:
#3242 (comment)

CDK CLI Version

2.141.0

Framework Version

No response

Node.js Version

v22.1.0

OS

Sonoma 14.2.1

Language

Python

Language Version

3.12.3

Other information

No response

@adamtimmins adamtimmins added bug This issue is a bug. needs-triage This issue or PR still needs to be triaged. labels May 13, 2024
@github-actions github-actions bot added the @aws-cdk/core Related to core CDK functionality label May 13, 2024
@khushail khushail added investigating This issue is being investigated and/or work is in progress to resolve the issue. and removed needs-triage This issue or PR still needs to be triaged. labels May 14, 2024
@khushail khushail self-assigned this May 14, 2024
@khushail
Copy link
Contributor

Hi @adamtimmins , thanks for reaching out. It seems like what you are mentioning here is quite similar to the bug described here and this reasoning and further explanation might be helpful to understand why.

Please feel free to reach out if its not helpful or different than what you are implying.

@khushail khushail added response-requested Waiting on additional info and feedback. Will move to "closing-soon" in 7 days. and removed investigating This issue is being investigated and/or work is in progress to resolve the issue. labels May 21, 2024
Copy link

This issue has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled.

@github-actions github-actions bot added the closing-soon This issue will automatically close in 4 days unless further comments are made. label May 24, 2024
@dliu864
Copy link

dliu864 commented May 28, 2024

Hi,

Could we please have this bug fixed? Our organization is requiring that we have permission boundaries implemented on all Roles that we create and there is currently no way to add a boundary to AWSCDKCfnUtilsProviderCustomResourceProviderRoleFE0EE867 as mentioned above.

@github-actions github-actions bot removed closing-soon This issue will automatically close in 4 days unless further comments are made. response-requested Waiting on additional info and feedback. Will move to "closing-soon" in 7 days. labels May 28, 2024
@khushail khushail added the investigating This issue is being investigated and/or work is in progress to resolve the issue. label May 28, 2024
@khushail
Copy link
Contributor

khushail commented May 28, 2024

@adamtimmins , Could you please share the the complete repro code.

I also see there is a closed issue similar to the custom role mentioned above - #22972 and many more (#13310) and previous attempts have been made for such similar issues like this PR - #14754. However this still seems like an issue so I am marking this as P1 for the appropriate traction.

@khushail khushail added p1 effort/medium Medium work item – several days of effort response-requested Waiting on additional info and feedback. Will move to "closing-soon" in 7 days. and removed investigating This issue is being investigated and/or work is in progress to resolve the issue. labels May 28, 2024
@dliu864
Copy link

dliu864 commented May 29, 2024 via email

@github-actions github-actions bot removed the response-requested Waiting on additional info and feedback. Will move to "closing-soon" in 7 days. label May 29, 2024
@adamtimmins
Copy link
Author

Hi @adamtimmins , thanks for reaching out. It seems like what you are mentioning here is quite similar to the bug described here and this reasoning and further explanation might be helpful to understand why.

Please feel free to reach out if its not helpful or different than what you are implying.

I have attempted these workarounds but none of them seem to work.

I have raised the issue and shared the code with AWS premium support and when I get a response I'll share it here.

@mjvirt
Copy link

mjvirt commented May 29, 2024

It is also possible to patch using the Aspect as follows given that the type of object for the role is a CfnResource and it has a node path (example using Custom Resource to delete S3 bucket objects):

@jsii.implements(IAspect)
class IamPathFixer:

    def visit(self, node) -> None:
       if isinstance(node, iam.CfnRole):
           node.add_property_override("Path", "/approles/")
       elif isinstance(node, CfnResource):
            if "Custom::S3AutoDeleteObjectsCustomResourceProvider/Role" in node.node.path:
                node.add_property_override("Path", "/approles/")

@adamtimmins
Copy link
Author

It is also possible to patch using the Aspect as follows given that the type of object for the role is a CfnResource and it has a node path (example using Custom Resource to delete S3 bucket objects):

@jsii.implements(IAspect)
class IamPathFixer:

    def visit(self, node) -> None:
       if isinstance(node, iam.CfnRole):
           node.add_property_override("Path", "/approles/")
       elif isinstance(node, CfnResource):
            if "Custom::S3AutoDeleteObjectsCustomResourceProvider/Role" in node.node.path:
                node.add_property_override("Path", "/approles/")

Have you tried using this solution when deploying the stack via CDK Pipelines. I've tried using a custom aspect before but it didn't work.

Also can you explain this line please add_property_override("Path", "/approles/") ?

@mjvirt
Copy link

mjvirt commented May 29, 2024

@adamtimmins actually above was just an example of getting to the resource you want to "patch" with an Aspect (in this case I assign an IAM path to isolate the "app" workload from other workloads). But you could equally do this as well (as an example)...

        elif isinstance(node, CfnResource) and node.cfn_resource_type == "AWS::IAM::Role":
            if re.match(r".+/Custom::.+CustomResourceProvider/Role$", node.node.path):
                node.add_property_override("PermissionsBoundary", f"arn:aws:iam::{node.stack.account}:policy/cdk-{qualifier}-customresource-permissions-boundary-{node.stack.account}-{node.stack.region}")

As for your comment on CDK pipelines. Although having used CDK pipelines in the past I can't recall combining an Aspect like this with the pipelines. I don't see why it wouldn't work but then I haven't tried it. In the case of CDK pipelines I suspect that scope of the aspect is everything. As in: the CDK pipeline itself couldn't be subject to the permissions boundary as this would mean that it (and by it I mean the pipeline role) would be subject to the same "rules" (permissions boundary) as the stacks it's trying to deploy. Hence, you would probably - at a guess - just apply the Aspect to the "app stacks".

If I ever get a chance to combine the two I will let you know of the outcome...

Morten

@dliu864
Copy link

dliu864 commented May 30, 2024

It is also possible to patch using the Aspect as follows given that the type of object for the role is a CfnResource and it has a node path (example using Custom Resource to delete S3 bucket objects):

@jsii.implements(IAspect)
class IamPathFixer:

    def visit(self, node) -> None:
       if isinstance(node, iam.CfnRole):
           node.add_property_override("Path", "/approles/")
       elif isinstance(node, CfnResource):
            if "Custom::S3AutoDeleteObjectsCustomResourceProvider/Role" in node.node.path:
                node.add_property_override("Path", "/approles/")

Hi Morten,

I printed every node with an Aspect in my stack, however, AWSCDKCfnUtilsProviderCustomResourceProviderRoleFE0EE867 did not get printed even though it is a AWS::IAM::Role and appears in the Cloudformation template. This means this role is not part of the construct tree structure and cannot be referenced at all within CDK. It's similar to how CDKMetadata is a resource in the Cloudformation but is not in the node tree structure and cannot be referenced.

David

@adamtimmins
Copy link
Author

@adamtimmins actually above was just an example of getting to the resource you want to "patch" with an Aspect (in this case I assign an IAM path to isolate the "app" workload from other workloads). But you could equally do this as well (as an example)...

        elif isinstance(node, CfnResource) and node.cfn_resource_type == "AWS::IAM::Role":
            if re.match(r".+/Custom::.+CustomResourceProvider/Role$", node.node.path):
                node.add_property_override("PermissionsBoundary", f"arn:aws:iam::{node.stack.account}:policy/cdk-{qualifier}-customresource-permissions-boundary-{node.stack.account}-{node.stack.region}")

As for your comment on CDK pipelines. Although having used CDK pipelines in the past I can't recall combining an Aspect like this with the pipelines. I don't see why it wouldn't work but then I haven't tried it. In the case of CDK pipelines I suspect that scope of the aspect is everything. As in: the CDK pipeline itself couldn't be subject to the permissions boundary as this would mean that it (and by it I mean the pipeline role) would be subject to the same "rules" (permissions boundary) as the stacks it's trying to deploy. Hence, you would probably - at a guess - just apply the Aspect to the "app stacks".

If I ever get a chance to combine the two I will let you know of the outcome...

Morten

Appreciate your explanation here, just confirms what I suspect as well. I have already tried applying a custom aspect and an escape hatches to the stack as well as the CDK pipelines just to see if it makes a difference and nothing did.

It is also possible to patch using the Aspect as follows given that the type of object for the role is a CfnResource and it has a node path (example using Custom Resource to delete S3 bucket objects):

@jsii.implements(IAspect)
class IamPathFixer:

    def visit(self, node) -> None:
       if isinstance(node, iam.CfnRole):
           node.add_property_override("Path", "/approles/")
       elif isinstance(node, CfnResource):
            if "Custom::S3AutoDeleteObjectsCustomResourceProvider/Role" in node.node.path:
                node.add_property_override("Path", "/approles/")

Hi Morten,

I printed every node with an Aspect in my stack, however, AWSCDKCfnUtilsProviderCustomResourceProviderRoleFE0EE867 did not get printed even though it is a AWS::IAM::Role and appears in the Cloudformation template. This means this role is not part of the construct tree structure and cannot be referenced at all within CDK. It's similar to how CDKMetadata is a resource in the Cloudformation but is not in the node tree structure and cannot be referenced.

David

This is exactly what I seeing as well. I'm printing all the node paths as well, and I'm not seeing AWSCDKCfnUtilsProviderCustomResourceProviderRoleFE0EE867.

@imduchy
Copy link

imduchy commented May 30, 2024

@adamtimmins I was actually running into the same issue yesterday, even posted a comment here but then deleted it as I found the issue.

I was applying Aspects inside of the eks.Cluster's scope instead of directly at a Stack's scope. The issue was that CustomResources, that I suspected were part of the eks.Cluster's scope were actually created one level higher, at the Stack's scope. Not sure if that applies to you too but worth trying. Make sure you're applying your Aspects at the scope level.

@mjvirt
Copy link

mjvirt commented May 30, 2024

Hi Morten,

I printed every node with an Aspect in my stack, however, AWSCDKCfnUtilsProviderCustomResourceProviderRoleFE0EE867 did not get printed even though it is a AWS::IAM::Role and appears in the Cloudformation template. This means this role is not part of the construct tree structure and cannot be referenced at all within CDK. It's similar to how CDKMetadata is a resource in the Cloudformation but is not in the node tree structure and cannot be referenced.

David

Hi David,
I don't recognise the name of that custom resource role (logical id). What I can tell you is that the example I provided found and patched the custom resource role (found as a CfnResource with cfn_resource_type=AWS::IAM::Role) underpinning the S3 bucket auto_delete_objects=True flag (logical id: SampleBucketAutoDeleteObjectsCustomResourceAC99DCF6). Perhaps mileage varies, but I have not yet accounted a scenario like yours.

The Aspect was "attached" at stack level with Aspects.of(sample_stack).add(IamRolePermissionsBoundary()) where IamRolePermissionsBoundary is the Aspect class that adds a Permissions Boundary to roles.

Morten

@adamtimmins
Copy link
Author

adamtimmins commented May 31, 2024

@adamtimmins I was actually running into the same issue yesterday, even posted a comment here but then deleted it as I found the issue.

I was applying Aspects inside of the eks.Cluster's scope instead of directly at a Stack's scope. The issue was that CustomResources, that I suspected were part of the eks.Cluster's scope were actually created one level higher, at the Stack's scope. Not sure if that applies to you too but worth trying. Make sure you're applying your Aspects at the scope level.

@imduchy when I print all the node paths from the stack level I'm still not seeing the ID for the role. The same as well when I print all the node paths from the Stage as well. I've attempted to add the Aspect to the stack level and to add the permission boundary to all roles but it still does not add it.

Hi Morten,
I printed every node with an Aspect in my stack, however, AWSCDKCfnUtilsProviderCustomResourceProviderRoleFE0EE867 did not get printed even though it is a AWS::IAM::Role and appears in the Cloudformation template. This means this role is not part of the construct tree structure and cannot be referenced at all within CDK. It's similar to how CDKMetadata is a resource in the Cloudformation but is not in the node tree structure and cannot be referenced.
David

Hi David, I don't recognise the name of that custom resource role (logical id). What I can tell you is that the example I provided found and patched the custom resource role (found as a CfnResource with cfn_resource_type=AWS::IAM::Role) underpinning the S3 bucket auto_delete_objects=True flag (logical id: SampleBucketAutoDeleteObjectsCustomResourceAC99DCF6). Perhaps mileage varies, but I have not yet accounted a scenario like yours.

The Aspect was "attached" at stack level with Aspects.of(sample_stack).add(IamRolePermissionsBoundary()) where IamRolePermissionsBoundary is the Aspect class that adds a Permissions Boundary to roles.

Morten

@mjvirt thanks for the explanation but I'm still not seeing node path on the stack level.

@adamtimmins
Copy link
Author

adamtimmins commented Jun 4, 2024

I've managed to isolate where exactly the role is being created.

AWSCDKCfnUtilsProviderCustomResourceProviderRoleFE0EE867 and it's corresponding Lambda AWSCDKCfnUtilsProviderCustomResourceProviderHandlerCF82AA57 are created when you reference a certain construct value within AwsCustomResource.

From my example this is when I reference vpc_endpoint_network_interface_ids in the below example.

AwsCustomResource(
    self,
    "describe-enis",
    on_update={
        "service": "EC2",
        "action": "describeNetworkInterfaces",
        "output_paths": output_paths,
        "parameters": {"NetworkInterfaceIds": vpc_endpoint.vpc_endpoint_network_interface_ids },
        "physical_resource_id": PhysicalResourceId.of(str(random.random())),
    },
    policy=AwsCustomResourcePolicy.from_statements(
        statements=[
            iam.PolicyStatement(
                effect=iam.Effect.ALLOW,
                actions=["ec2:DescribeNetworkInterfaces"],
                resources=["*"],
            ),
        ],
    ),
)

If I replace the parameters module in the AwsSdkCall with a random list of strings and synth the role AWSCDKCfnUtilsProviderCustomResourceProviderRoleFE0EE867 and Lambda AWSCDKCfnUtilsProviderCustomResourceProviderHandlerCF82AA57 disappear.

AwsCustomResource(
    self,
    "describe-enis",
    on_update={
        "service": "EC2",
        "action": "describeNetworkInterfaces",
        "output_paths": output_paths,
        "parameters": {"NetworkInterfaceIds": ["w/e"]},
        "physical_resource_id": PhysicalResourceId.of(str(random.random())),
    },
    policy=AwsCustomResourcePolicy.from_statements(
        statements=[
            iam.PolicyStatement(
                effect=iam.Effect.ALLOW,
                actions=["ec2:DescribeNetworkInterfaces"],
                resources=["*"],
            ),
        ],
    ),
)

I tried looking around for what this Lambda does but I can't find anything. It's completely without context of the CDK app hence why adding a permission boundary with an custom aspect or an escape hatch won't work.

I'm not sure of a work around since the only way to make the custom resource work is to add interface ID's manually which is not really the point of my use case.

@khushail khushail removed their assignment Jun 4, 2024
@dliu864
Copy link

dliu864 commented Jun 11, 2024

Hi @khushail Khurana, I have added you to my repo so you can reproduce the bug. Please let me know how it goes. Cheers, David

On Wed, May 29, 2024 at 4:39 AM Shailja Khurana @.> wrote: @adamtimmins https://github.com/adamtimmins , Could you please share the the complete repro code. I also see there is a closed issue similar to the custom role mentioned above - #22972 <#22972> and previous attempts have been made for such similar issues like this PR - #14754 <#14754>. However this still seems like an issue so I am marking this as P1 for the appropriate traction. — Reply to this email directly, view it on GitHub <#30179 (comment)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/AI2L3GKCI2FASVSH5J4S2CDZETFNBAVCNFSM6AAAAABHUCKCV2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMZVHA4DQMJXG4 . You are receiving this because you commented.Message ID: @.>

Hi khushail,

Just wondering if you were able to reproduce the bug with my repo code?

Cheers,

David

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
@aws-cdk/core Related to core CDK functionality bug This issue is a bug. effort/medium Medium work item – several days of effort p1
Projects
None yet
Development

No branches or pull requests

5 participants