-
Notifications
You must be signed in to change notification settings - Fork 212
Open
Description
Environment:
efs-utils version: 2.3.3
OS: Ubuntu 22.04
Setup: Cross-account mount (Account B client -> Account A EFS) via VPC Peering. Client uses EC2 Instance Role.
When I try mounting EFS in another account without DNS, EFS mount helper fallback to botocore is not succesfull:
root@ip-10-3-39-93:/efs/shared# sudo mount -t efs -o tls,iam fs-0fa0b6d512769dd13 /mnt/efs/
Failed to resolve "fs-0fa0b6d512769dd13.efs.eu-central-1.amazonaws.com". The file system mount target ip address cannot be found, please pass mount target ip address via mount options.
The file system fs-0fa0b6d512769dd13 is not found
I'm getting the same error when using aws-cli in Account B
root@ip-10-3-39-93:/efs/shared# aws efs describe-mount-targets --file-system-id fs-0fa0b6d512769dd13
An error occurred (FileSystemNotFound) when calling the DescribeMountTargets operation: File system 'fs-0fa0b6d512769dd13' does not exist.
However, when i provide full ARN - that succeeds
root@ip-10-3-39-93:/efs/shared# aws efs describe-mount-targets --file-system-id arn:aws:elasticfilesystem:eu-central-1:AAAAAAAAAAAA:file-system/fs-0fa0b6d512769dd13
{
"MountTargets": [
{
"OwnerId": "AAAAAAAAAAAA",
"MountTargetId": "fsmt-087f72a39309d59d4",
"FileSystemId": "fs-0fa0b6d512769dd13",
"SubnetId": "subnet-061174406f7f8a367",
"LifeCycleState": "available",
"IpAddress": "10.1.12.12",
"NetworkInterfaceId": "eni-0eeb5f72a54f7727c",
"AvailabilityZoneId": "euc1-az1",
"AvailabilityZoneName": "eu-central-1c",
"VpcId": "vpc-0e78542d4e0f9b84c"
},
{
"OwnerId": "AAAAAAAAAAAA",
"MountTargetId": "fsmt-08e760d424d966e6b",
"FileSystemId": "fs-0fa0b6d512769dd13",
"SubnetId": "subnet-0444ba7ac84288d7f",
"LifeCycleState": "available",
"IpAddress": "10.1.44.30",
"NetworkInterfaceId": "eni-0c176045d5a774487",
"AvailabilityZoneId": "euc1-az3",
"AvailabilityZoneName": "eu-central-1b",
"VpcId": "vpc-0e78542d4e0f9b84c"
},
{
"OwnerId": "AAAAAAAAAAAA",
"MountTargetId": "fsmt-0d6bda15bf912d91f",
"FileSystemId": "fs-0fa0b6d512769dd13",
"SubnetId": "subnet-0a94d7656c57b8b51",
"LifeCycleState": "available",
"IpAddress": "10.1.28.35",
"NetworkInterfaceId": "eni-09051fe2172a4d6c5",
"AvailabilityZoneId": "euc1-az2",
"AvailabilityZoneName": "eu-central-1a",
"VpcId": "vpc-0e78542d4e0f9b84c"
}
]
}
Here are debug outputs
Mount log
root@ip-10-3-39-93:/efs/shared# cat /var/log/amazon/efs/mount.log
2025-10-21 09:17:36 UTC - INFO - version=2.3.3 options={'rw': None, 'tls': None, 'iam': None}
2025-10-21 09:17:36 UTC - DEBUG - Identified init system: systemd
2025-10-21 09:17:36 UTC - DEBUG - Retrieve property region from instance metadata
2025-10-21 09:17:36 UTC - DEBUG - Using dns_name_suffix amazonaws.com
2025-10-21 09:17:36 UTC - INFO - Failed to resolve fs-0fa0b6d512769dd13.efs.eu-central-1.amazonaws.com, attempting to lookup mount target ip address using botocore.
2025-10-21 09:17:36 UTC - DEBUG - Retrieve property availabilityZone from instance metadata
2025-10-21 09:17:36 UTC - DEBUG - Instance metadata already retrieved in previous call, use the cached values.
2025-10-21 09:17:36 UTC - DEBUG - Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
2025-10-21 09:17:36 UTC - DEBUG - Changing event name from before-call.apigateway to before-call.api-gateway
2025-10-21 09:17:36 UTC - DEBUG - Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
2025-10-21 09:17:36 UTC - DEBUG - Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
2025-10-21 09:17:36 UTC - DEBUG - Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
2025-10-21 09:17:36 UTC - DEBUG - Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
2025-10-21 09:17:36 UTC - DEBUG - Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
2025-10-21 09:17:36 UTC - DEBUG - Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
2025-10-21 09:17:36 UTC - DEBUG - Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
2025-10-21 09:17:36 UTC - DEBUG - Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
2025-10-21 09:17:36 UTC - DEBUG - Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
2025-10-21 09:17:36 UTC - DEBUG - Retrieve property region from instance metadata
2025-10-21 09:17:36 UTC - DEBUG - Instance metadata already retrieved in previous call, use the cached values.
2025-10-21 09:17:36 UTC - DEBUG - IMDS ENDPOINT: http://169.254.169.254/
2025-10-21 09:17:36 UTC - DEBUG - Looking for credentials via: env
2025-10-21 09:17:36 UTC - DEBUG - Looking for credentials via: assume-role
2025-10-21 09:17:36 UTC - DEBUG - Looking for credentials via: assume-role-with-web-identity
2025-10-21 09:17:36 UTC - DEBUG - Looking for credentials via: sso
2025-10-21 09:17:36 UTC - DEBUG - Looking for credentials via: shared-credentials-file
2025-10-21 09:17:36 UTC - DEBUG - Looking for credentials via: custom-process
2025-10-21 09:17:36 UTC - DEBUG - Looking for credentials via: config-file
2025-10-21 09:17:36 UTC - DEBUG - Looking for credentials via: ec2-credentials-file
2025-10-21 09:17:36 UTC - DEBUG - Looking for credentials via: boto-config
2025-10-21 09:17:36 UTC - DEBUG - Looking for credentials via: container-role
2025-10-21 09:17:36 UTC - DEBUG - Looking for credentials via: iam-role
2025-10-21 09:17:36 UTC - DEBUG - Starting new HTTP connection (1): 169.254.169.254:80
2025-10-21 09:17:36 UTC - DEBUG - http://169.254.169.254:80 "PUT /latest/api/token HTTP/1.1" 200 56
2025-10-21 09:17:36 UTC - DEBUG - Resetting dropped connection: 169.254.169.254
2025-10-21 09:17:36 UTC - DEBUG - http://169.254.169.254:80 "GET /latest/meta-data/iam/security-credentials/ HTTP/1.1" 200 15
2025-10-21 09:17:36 UTC - DEBUG - Resetting dropped connection: 169.254.169.254
2025-10-21 09:17:36 UTC - DEBUG - http://169.254.169.254:80 "GET /latest/meta-data/iam/security-credentials/Ec2JumpHostRole HTTP/1.1" 200 1586
2025-10-21 09:17:36 UTC - INFO - Found credentials from IAM Role: Ec2JumpHostRole
2025-10-21 09:17:36 UTC - DEBUG - Loading JSON file: /usr/local/lib/python3.10/dist-packages/botocore/data/endpoints.json
2025-10-21 09:17:36 UTC - DEBUG - Loading JSON file: /usr/local/lib/python3.10/dist-packages/botocore/data/sdk-default-configuration.json
2025-10-21 09:17:36 UTC - DEBUG - Event choose-service-name: calling handler <function handle_service_name_alias at 0x782bcb502170>
2025-10-21 09:17:36 UTC - DEBUG - Loading JSON file: /usr/local/lib/python3.10/dist-packages/botocore/data/ec2/2016-11-15/service-2.json.gz
2025-10-21 09:17:36 UTC - DEBUG - Loading JSON file: /usr/local/lib/python3.10/dist-packages/botocore/data/ec2/2016-11-15/endpoint-rule-set-1.json.gz
2025-10-21 09:17:36 UTC - DEBUG - Loading JSON file: /usr/local/lib/python3.10/dist-packages/botocore/data/partitions.json
2025-10-21 09:17:36 UTC - DEBUG - Event creating-client-class.ec2: calling handler <function add_generate_presigned_url at 0x782bcb4995a0>
2025-10-21 09:17:36 UTC - DEBUG - Looking for endpoint for ec2 via: environment_service
2025-10-21 09:17:36 UTC - DEBUG - Looking for endpoint for ec2 via: environment_global
2025-10-21 09:17:36 UTC - DEBUG - Looking for endpoint for ec2 via: config_service
2025-10-21 09:17:36 UTC - DEBUG - Looking for endpoint for ec2 via: config_global
2025-10-21 09:17:36 UTC - DEBUG - No configured endpoint found.
2025-10-21 09:17:36 UTC - DEBUG - Setting ec2 timeout as (60, 60)
2025-10-21 09:17:36 UTC - DEBUG - Loading JSON file: /usr/local/lib/python3.10/dist-packages/botocore/data/_retry.json
2025-10-21 09:17:36 UTC - DEBUG - Registering retry handlers for service: ec2
2025-10-21 09:17:37 UTC - DEBUG - Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
2025-10-21 09:17:37 UTC - DEBUG - Changing event name from before-call.apigateway to before-call.api-gateway
2025-10-21 09:17:37 UTC - DEBUG - Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
2025-10-21 09:17:37 UTC - DEBUG - Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
2025-10-21 09:17:37 UTC - DEBUG - Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
2025-10-21 09:17:37 UTC - DEBUG - Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
2025-10-21 09:17:37 UTC - DEBUG - Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
2025-10-21 09:17:37 UTC - DEBUG - Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
2025-10-21 09:17:37 UTC - DEBUG - Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
2025-10-21 09:17:37 UTC - DEBUG - Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
2025-10-21 09:17:37 UTC - DEBUG - Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
2025-10-21 09:17:37 UTC - DEBUG - Retrieve property region from instance metadata
2025-10-21 09:17:37 UTC - DEBUG - Instance metadata already retrieved in previous call, use the cached values.
2025-10-21 09:17:37 UTC - DEBUG - IMDS ENDPOINT: http://169.254.169.254/
2025-10-21 09:17:37 UTC - DEBUG - Looking for credentials via: env
2025-10-21 09:17:37 UTC - DEBUG - Looking for credentials via: assume-role
2025-10-21 09:17:37 UTC - DEBUG - Looking for credentials via: assume-role-with-web-identity
2025-10-21 09:17:37 UTC - DEBUG - Looking for credentials via: sso
2025-10-21 09:17:37 UTC - DEBUG - Looking for credentials via: shared-credentials-file
2025-10-21 09:17:37 UTC - DEBUG - Looking for credentials via: custom-process
2025-10-21 09:17:37 UTC - DEBUG - Looking for credentials via: config-file
2025-10-21 09:17:37 UTC - DEBUG - Looking for credentials via: ec2-credentials-file
2025-10-21 09:17:37 UTC - DEBUG - Looking for credentials via: boto-config
2025-10-21 09:17:37 UTC - DEBUG - Looking for credentials via: container-role
2025-10-21 09:17:37 UTC - DEBUG - Looking for credentials via: iam-role
2025-10-21 09:17:37 UTC - DEBUG - Starting new HTTP connection (1): 169.254.169.254:80
2025-10-21 09:17:37 UTC - DEBUG - http://169.254.169.254:80 "PUT /latest/api/token HTTP/1.1" 200 56
2025-10-21 09:17:37 UTC - DEBUG - Resetting dropped connection: 169.254.169.254
2025-10-21 09:17:37 UTC - DEBUG - http://169.254.169.254:80 "GET /latest/meta-data/iam/security-credentials/ HTTP/1.1" 200 15
2025-10-21 09:17:37 UTC - DEBUG - Resetting dropped connection: 169.254.169.254
2025-10-21 09:17:37 UTC - DEBUG - http://169.254.169.254:80 "GET /latest/meta-data/iam/security-credentials/Ec2JumpHostRole HTTP/1.1" 200 1586
2025-10-21 09:17:37 UTC - INFO - Found credentials from IAM Role: Ec2JumpHostRole
2025-10-21 09:17:37 UTC - DEBUG - Loading JSON file: /usr/local/lib/python3.10/dist-packages/botocore/data/endpoints.json
2025-10-21 09:17:37 UTC - DEBUG - Loading JSON file: /usr/local/lib/python3.10/dist-packages/botocore/data/sdk-default-configuration.json
2025-10-21 09:17:37 UTC - DEBUG - Event choose-service-name: calling handler <function handle_service_name_alias at 0x782bcb502170>
2025-10-21 09:17:37 UTC - DEBUG - Loading JSON file: /usr/local/lib/python3.10/dist-packages/botocore/data/efs/2015-02-01/service-2.json.gz
2025-10-21 09:17:37 UTC - DEBUG - Loading JSON file: /usr/local/lib/python3.10/dist-packages/botocore/data/efs/2015-02-01/endpoint-rule-set-1.json.gz
2025-10-21 09:17:37 UTC - DEBUG - Loading JSON file: /usr/local/lib/python3.10/dist-packages/botocore/data/partitions.json
2025-10-21 09:17:37 UTC - DEBUG - Event creating-client-class.efs: calling handler <function add_generate_presigned_url at 0x782bcb4995a0>
2025-10-21 09:17:37 UTC - DEBUG - Looking for endpoint for efs via: environment_service
2025-10-21 09:17:37 UTC - DEBUG - Looking for endpoint for efs via: environment_global
2025-10-21 09:17:37 UTC - DEBUG - Looking for endpoint for efs via: config_service
2025-10-21 09:17:37 UTC - DEBUG - Looking for endpoint for efs via: config_global
2025-10-21 09:17:37 UTC - DEBUG - No configured endpoint found.
2025-10-21 09:17:37 UTC - DEBUG - Setting elasticfilesystem timeout as (60, 60)
2025-10-21 09:17:37 UTC - DEBUG - Changing event name from creating-serializer.elasticfilesystem to creating-serializer.efs
2025-10-21 09:17:37 UTC - DEBUG - Loading JSON file: /usr/local/lib/python3.10/dist-packages/botocore/data/_retry.json
2025-10-21 09:17:37 UTC - DEBUG - Registering retry handlers for service: efs
2025-10-21 09:17:37 UTC - DEBUG - Event before-parameter-build.efs.DescribeMountTargets: calling handler <function generate_idempotent_uuid at 0x782bcb503c70>
2025-10-21 09:17:37 UTC - DEBUG - Event before-parameter-build.efs.DescribeMountTargets: calling handler <function _handle_request_validation_mode_member at 0x782bcb522440>
2025-10-21 09:17:37 UTC - DEBUG - Calling endpoint provider with parameters: {'UseDualStack': False, 'UseFIPS': False, 'Region': 'eu-central-1'}
2025-10-21 09:17:37 UTC - DEBUG - Endpoint provider result: https://elasticfilesystem.eu-central-1.amazonaws.com
2025-10-21 09:17:37 UTC - DEBUG - Event before-call.efs.DescribeMountTargets: calling handler <function add_recursion_detection_header at 0x782bcb5037f0>
2025-10-21 09:17:37 UTC - DEBUG - Event before-call.efs.DescribeMountTargets: calling handler <function inject_api_version_header_if_needed at 0x782bcb521510>
2025-10-21 09:17:37 UTC - DEBUG - Making request for OperationModel(name=DescribeMountTargets) with params: {'url_path': '/2015-02-01/mount-targets', 'query_string': {'FileSystemId': 'fs-0fa0b6d512769dd13'}, 'method': 'GET', 'headers': {'User-Agent': 'Botocore/1.40.55 ua/2.1 os/linux#6.8.0-1040-aws md/arch#x86_64 lang/python#3.10.12 md/pyimpl#CPython m/D,Z,0,b cfg/retry-mode#legacy'}, 'body': b'', 'url': 'https://elasticfilesystem.eu-central-1.amazonaws.com/2015-02-01/mount-targets?FileSystemId=fs-0fa0b6d512769dd13', 'context': {'client_region': 'eu-central-1', 'client_config': <botocore.config.Config object at 0x782bc94a1510>, 'has_streaming_input': False, 'auth_type': None, 'unsigned_payload': None, 'auth_options': ['aws.auth#sigv4']}}
2025-10-21 09:17:37 UTC - DEBUG - Event request-created.efs.DescribeMountTargets: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x782bc94a1480>>
2025-10-21 09:17:37 UTC - DEBUG - Event choose-signer.efs.DescribeMountTargets: calling handler <function set_operation_specific_signer at 0x782bcb503a30>
2025-10-21 09:17:37 UTC - DEBUG - Event choose-signer.efs.DescribeMountTargets: calling handler <function _set_auth_scheme_preference_signer at 0x782bcb522560>
2025-10-21 09:17:37 UTC - DEBUG - Calculating signature using v4 auth.
2025-10-21 09:17:37 UTC - DEBUG - CanonicalRequest:
GET
/2015-02-01/mount-targets
FileSystemId=fs-0fa0b6d512769dd13
host:elasticfilesystem.eu-central-1.amazonaws.com
x-amz-date:20251021T091737Z
x-amz-security-token: secret==
host;x-amz-date;x-amz-security-token
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2025-10-21 09:17:37 UTC - DEBUG - StringToSign:
AWS4-HMAC-SHA256
20251021T091737Z
20251021/eu-central-1/elasticfilesystem/aws4_request
d1e3219f957b2c1d815a18c679c1c2bf407cac39d4c45262d8d240be29b442ac
2025-10-21 09:17:37 UTC - DEBUG - Signature:
7b7927bcbf5772c4b7d3717f89004e61deed69547cb852d1667e8b5b71eddb42
2025-10-21 09:17:37 UTC - DEBUG - Event request-created.efs.DescribeMountTargets: calling handler <bound method UserAgentString.rebuild_and_replace_user_agent_handler of <botocore.useragent.UserAgentStringobject at 0x782bc94a2680>>
2025-10-21 09:17:37 UTC - DEBUG - Event request-created.efs.DescribeMountTargets: calling handler <function add_retry_headers at 0x782bcb521d80>
2025-10-21 09:17:37 UTC - DEBUG - Sending http request: <AWSPreparedRequest stream_output=False, method=GET, url=https://elasticfilesystem.eu-central-1.amazonaws.com/2015-02-01/mount-targets?FileSystemId=fs-0fa0b6d512769dd13, headers={'User-Agent': b'Botocore/1.40.55 ua/2.1 os/linux#6.8.0-1040-aws md/arch#x86_64 lang/python#3.10.12 md/pyimpl#CPython m/D,Z,0,b cfg/retry-mode#legacy', 'X-Amz-Date': b'20251021T091737Z', 'X-Amz-Security-Token': b'secret', 'Authorization': b'AWS4-HMAC-SHA256 Credential=ASIAW2ZPBHIM6I7EK6RA/20251021/eu-central-1/elasticfilesystem/aws4_request, SignedHeaders=host;x-amz-date;x-amz-security-token, Signature=7b7927bcbf5772c4b7d3717f89004e61deed69547cb852d1667e8b5b71eddb42', 'amz-sdk-invocation-id': b'6523da16-dd35-4b1b-bd12-8e3aa11cbcfa', 'amz-sdk-request': b'attempt=1'}>
2025-10-21 09:17:37 UTC - DEBUG - Certificate path: /etc/ssl/certs/ca-certificates.crt
2025-10-21 09:17:37 UTC - DEBUG - Starting new HTTPS connection (1): elasticfilesystem.eu-central-1.amazonaws.com:443
2025-10-21 09:17:37 UTC - DEBUG - https://elasticfilesystem.eu-central-1.amazonaws.com:443 "GET /2015-02-01/mount-targets?FileSystemId=fs-0fa0b6d512769dd13 HTTP/1.1" 404 97
2025-10-21 09:17:37 UTC - DEBUG - Response headers: {'Date': 'Tue, 21 Oct 2025 09:17:37 GMT', 'Content-Type': 'application/json', 'Content-Length': '97', 'Connection': 'keep-alive', 'x-amzn-RequestId': '32cdaa86-6062-4c43-95b4-82c9d2cd2fde', 'x-amzn-ErrorType': 'FileSystemNotFound:'}
2025-10-21 09:17:37 UTC - DEBUG - Response body:
b'{"ErrorCode":"FileSystemNotFound","Message":"File system \'fs-0fa0b6d512769dd13\' does not exist."}'
2025-10-21 09:17:37 UTC - DEBUG - Response headers: {'Date': 'Tue, 21 Oct 2025 09:17:37 GMT', 'Content-Type': 'application/json', 'Content-Length': '97', 'Connection': 'keep-alive', 'x-amzn-RequestId': '32cdaa86-6062-4c43-95b4-82c9d2cd2fde', 'x-amzn-ErrorType': 'FileSystemNotFound:'}
2025-10-21 09:17:37 UTC - DEBUG - Response body:
b'{"ErrorCode":"FileSystemNotFound","Message":"File system \'fs-0fa0b6d512769dd13\' does not exist."}'
2025-10-21 09:17:37 UTC - DEBUG - Event needs-retry.efs.DescribeMountTargets: calling handler <botocore.retryhandler.RetryHandler object at 0x782bc94a2b60>
2025-10-21 09:17:37 UTC - DEBUG - No retry needed.
2025-10-21 09:17:37 UTC - ERROR - Failed to resolve "fs-0fa0b6d512769dd13.efs.eu-central-1.amazonaws.com". The file system mount target ip address cannot be found, please pass mount target ip address via mount options.
The file system fs-0fa0b6d512769dd13 is not found
Unsuccessful AWS-CLI call
root@ip-10-3-39-93:/efs/shared# aws efs describe-mount-targets --file-system-id fs-0fa0b6d512769dd13 --debug
2025-10-21 09:19:17,804 - MainThread - awscli.clidriver - DEBUG - CLI version: aws-cli/2.31.18 Python/3.13.7 Linux/6.8.0-1040-aws exe/x86_64.ubuntu.22
2025-10-21 09:19:17,805 - MainThread - awscli.clidriver - DEBUG - Arguments entered to CLI: ['efs', 'describe-mount-targets', '--file-system-id', 'fs-0fa0b6d512769dd13', '--debug']
...
2025-10-21 09:19:17,830 - MainThread - botocore.utils - DEBUG - IMDS ENDPOINT: http://169.254.169.254/
2025-10-21 09:19:17,832 - MainThread - botocore.hooks - DEBUG - Event session-initialized: calling handler <function attach_history_handler at 0x7e4a0c56a0c0>
2025-10-21 09:19:17,832 - MainThread - botocore.hooks - DEBUG - Event session-initialized: calling handler <function inject_json_file_cache at 0x7e4a0c61f060>
2025-10-21 09:19:17,846 - MainThread - botocore.loaders - DEBUG - Loading JSON file: /usr/local/aws-cli/v2/2.31.18/dist/awscli/botocore/data/efs/2015-02-01/service-2.json
2025-10-21 09:19:17,852 - MainThread - botocore.hooks - DEBUG - Event building-command-table.efs: calling handler <function add_waiters at 0x7e4a0c46a660>
2025-10-21 09:19:17,867 - MainThread - botocore.hooks - DEBUG - Event building-command-table.efs: calling handler <bound method AliasSubCommandInjector.on_building_command_table of <awscli.alias.AliasSubCommandInjector object at 0x7e4a0c2dc980>>
2025-10-21 09:19:17,868 - MainThread - awscli.clidriver - DEBUG - OrderedDict({'max-items': <awscli.arguments.CLIArgument object at 0x7e4a0c3470e0>, 'marker': <awscli.arguments.CLIArgument object at 0x7e4a0c313610>, 'file-system-id': <awscli.arguments.CLIArgument object at 0x7e4a0c313750>, 'mount-target-id': <awscli.arguments.CLIArgument object at 0x7e4a0c4c23f0>, 'access-point-id': <awscli.arguments.CLIArgument object at 0x7e4a0c4c2520>})
2025-10-21 09:19:17,869 - MainThread - botocore.hooks - DEBUG - Event building-argument-table.efs.describe-mount-targets: calling handler <function add_streaming_output_arg at 0x7e4a0c468900>
2025-10-21 09:19:17,869 - MainThread - botocore.hooks - DEBUG - Event building-argument-table.efs.describe-mount-targets: calling handler <function add_cli_input_json at 0x7e4a0c7fe160>
2025-10-21 09:19:17,869 - MainThread - botocore.hooks - DEBUG - Event building-argument-table.efs.describe-mount-targets: calling handler <function add_cli_input_yaml at 0x7e4a0c7fef20>
2025-10-21 09:19:17,870 - MainThread - botocore.hooks - DEBUG - Event building-argument-table.efs.describe-mount-targets: calling handler <function unify_paging_params at 0x7e4a0c6351c0>
2025-10-21 09:19:17,882 - MainThread - botocore.loaders - DEBUG - Loading JSON file: /usr/local/aws-cli/v2/2.31.18/dist/awscli/botocore/data/efs/2015-02-01/paginators-1.json
2025-10-21 09:19:17,883 - MainThread - awscli.customizations.paginate - DEBUG - Modifying paging parameters for operation: DescribeMountTargets
2025-10-21 09:19:17,883 - MainThread - botocore.hooks - DEBUG - Event building-argument-table.efs.describe-mount-targets: calling handler <function add_generate_skeleton at 0x7e4a0c541800>
2025-10-21 09:19:17,884 - MainThread - botocore.hooks - DEBUG - Event before-building-argument-table-parser.efs.describe-mount-targets: calling handler <bound method OverrideRequiredArgsArgument.override_required_args of <awscli.customizations.cliinput.CliInputJSONArgument object at 0x7e4a0c347380>>
2025-10-21 09:19:17,884 - MainThread - botocore.hooks - DEBUG - Event before-building-argument-table-parser.efs.describe-mount-targets: calling handler <bound method OverrideRequiredArgsArgument.override_required_args of <awscli.customizations.cliinput.CliInputYAMLArgument object at 0x7e4a0c3474d0>>
2025-10-21 09:19:17,884 - MainThread - botocore.hooks - DEBUG - Event before-building-argument-table-parser.efs.describe-mount-targets: calling handler <bound method GenerateCliSkeletonArgument.override_required_args of <awscli.customizations.generatecliskeleton.GenerateCliSkeletonArgument object at 0x7e4a0c347620>>
2025-10-21 09:19:17,885 - MainThread - botocore.hooks - DEBUG - Event building-command-table.efs_describe-mount-targets: calling handler <function add_waiters at 0x7e4a0c46a660>
2025-10-21 09:19:17,885 - MainThread - botocore.hooks - DEBUG - Event building-command-table.efs_describe-mount-targets: calling handler <bound method AliasSubCommandInjector.on_building_command_table of <awscli.alias.AliasSubCommandInjector object at 0x7e4a0c2dc980>>
2025-10-21 09:19:17,886 - MainThread - botocore.hooks - DEBUG - Event operation-args-parsed.efs.describe-mount-targets: calling handler functools.partial(<function check_should_enable_pagination at 0x7e4a0c635300>, ['marker', 'max-items'], {'max-items': <awscli.arguments.CLIArgument object at 0x7e4a0c3470e0>}, OrderedDict({'max-items': <awscli.customizations.paginate.PageArgument object at 0x7e4a0c313c50>, 'marker': <awscli.arguments.CLIArgument object at 0x7e4a0c313610>, 'file-system-id': <awscli.arguments.CLIArgument object at 0x7e4a0c313750>, 'mount-target-id': <awscli.arguments.CLIArgument object at 0x7e4a0c4c23f0>, 'access-point-id': <awscli.arguments.CLIArgument object at 0x7e4a0c4c2520>, 'cli-input-json': <awscli.customizations.cliinput.CliInputJSONArgument object at 0x7e4a0c347380>, 'cli-input-yaml': <awscli.customizations.cliinput.CliInputYAMLArgument object at 0x7e4a0c3474d0>, 'starting-token': <awscli.customizations.paginate.PageArgument object at 0x7e4a0c347770>, 'page-size': <awscli.customizations.paginate.PageArgument object at 0x7e4a0c3139d0>, 'generate-cli-skeleton': <awscli.customizations.generatecliskeleton.GenerateCliSkeletonArgument object at 0x7e4a0c347620>}))
2025-10-21 09:19:17,886 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.max-items: calling handler <awscli.paramfile.URIArgumentHandler object at 0x7e4a0c2dd400>
2025-10-21 09:19:17,887 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.marker: calling handler <awscli.paramfile.URIArgumentHandler object at 0x7e4a0c2dd400>
2025-10-21 09:19:17,887 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.file-system-id: calling handler <awscli.paramfile.URIArgumentHandler object at 0x7e4a0c2dd400>
2025-10-21 09:19:17,887 - MainThread - botocore.hooks - DEBUG - Event process-cli-arg.efs.describe-mount-targets: calling handler <awscli.argprocess.ParamShorthandParser object at 0x7e4a0c5c6ba0>
2025-10-21 09:19:17,887 - MainThread - awscli.arguments - DEBUG - Unpacked value of 'fs-0fa0b6d512769dd13' for parameter "file_system_id": 'fs-0fa0b6d512769dd13'
2025-10-21 09:19:17,887 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.mount-target-id: calling handler <awscli.paramfile.URIArgumentHandler object at 0x7e4a0c2dd400>
2025-10-21 09:19:17,887 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.access-point-id: calling handler <awscli.paramfile.URIArgumentHandler object at 0x7e4a0c2dd400>
2025-10-21 09:19:17,887 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.cli-input-json: calling handler <awscli.paramfile.URIArgumentHandler object at 0x7e4a0c2dd400>
2025-10-21 09:19:17,888 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.cli-input-yaml: calling handler <awscli.paramfile.URIArgumentHandler object at 0x7e4a0c2dd400>
2025-10-21 09:19:17,888 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.starting-token: calling handler <awscli.paramfile.URIArgumentHandler object at 0x7e4a0c2dd400>
2025-10-21 09:19:17,888 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.page-size: calling handler <awscli.paramfile.URIArgumentHandler object at 0x7e4a0c2dd400>
2025-10-21 09:19:17,889 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.generate-cli-skeleton: calling handler <awscli.paramfile.URIArgumentHandler object at 0x7e4a0c2dd400>
2025-10-21 09:19:17,889 - MainThread - botocore.hooks - DEBUG - Event calling-command.efs.describe-mount-targets: calling handler <bound method CliInputArgument.add_to_call_parameters of <awscli.customizations.cliinput.CliInputJSONArgument object at 0x7e4a0c347380>>
2025-10-21 09:19:17,889 - MainThread - botocore.hooks - DEBUG - Event calling-command.efs.describe-mount-targets: calling handler <bound method CliInputArgument.add_to_call_parameters of <awscli.customizations.cliinput.CliInputYAMLArgument object at 0x7e4a0c3474d0>>
2025-10-21 09:19:17,889 - MainThread - botocore.hooks - DEBUG - Event calling-command.efs.describe-mount-targets: calling handler <bound method GenerateCliSkeletonArgument.generate_skeleton of <awscli.customizations.generatecliskeleton.GenerateCliSkeletonArgument object at 0x7e4a0c347620>>
2025-10-21 09:19:17,889 - MainThread - botocore.hooks - DEBUG - Event calling-command.efs.describe-mount-targets: calling handler functools.partial(<function check_should_enable_pagination_call_parameters at 0x7e4a0c635760>, ['Marker', 'MaxItems'])
2025-10-21 09:19:17,890 - MainThread - botocore.utils - DEBUG - IMDS ENDPOINT: http://169.254.169.254/
2025-10-21 09:19:17,892 - MainThread - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): 169.254.169.254:80
2025-10-21 09:19:17,895 - MainThread - urllib3.connectionpool - DEBUG - http://169.254.169.254:80 "PUT /latest/api/token HTTP/1.1" 200 56
2025-10-21 09:19:17,896 - MainThread - urllib3.connectionpool - DEBUG - Resetting dropped connection: 169.254.169.254
2025-10-21 09:19:17,898 - MainThread - urllib3.connectionpool - DEBUG - http://169.254.169.254:80 "GET /latest/meta-data/placement/availability-zone/ HTTP/1.1" 200 13
2025-10-21 09:19:17,899 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: env
2025-10-21 09:19:17,899 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: assume-role
2025-10-21 09:19:17,900 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: assume-role-with-web-identity
2025-10-21 09:19:17,900 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: sso
2025-10-21 09:19:17,900 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: shared-credentials-file
2025-10-21 09:19:17,900 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: custom-process
2025-10-21 09:19:17,900 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: config-file
2025-10-21 09:19:17,900 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: ec2-credentials-file
2025-10-21 09:19:17,901 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: boto-config
2025-10-21 09:19:17,901 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: container-role
2025-10-21 09:19:17,901 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: iam-role
2025-10-21 09:19:17,901 - MainThread - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): 169.254.169.254:80
2025-10-21 09:19:17,903 - MainThread - urllib3.connectionpool - DEBUG - http://169.254.169.254:80 "PUT /latest/api/token HTTP/1.1" 200 56
2025-10-21 09:19:17,904 - MainThread - urllib3.connectionpool - DEBUG - Resetting dropped connection: 169.254.169.254
2025-10-21 09:19:17,906 - MainThread - urllib3.connectionpool - DEBUG - http://169.254.169.254:80 "GET /latest/meta-data/iam/security-credentials/ HTTP/1.1" 200 15
2025-10-21 09:19:17,907 - MainThread - urllib3.connectionpool - DEBUG - Resetting dropped connection: 169.254.169.254
2025-10-21 09:19:17,909 - MainThread - urllib3.connectionpool - DEBUG - http://169.254.169.254:80 "GET /latest/meta-data/iam/security-credentials/Ec2JumpHostRole HTTP/1.1" 200 1586
2025-10-21 09:19:17,913 - MainThread - botocore.credentials - DEBUG - Found credentials from IAM Role: Ec2JumpHostRole
2025-10-21 09:19:17,916 - MainThread - botocore.loaders - DEBUG - Loading JSON file: /usr/local/aws-cli/v2/2.31.18/dist/awscli/botocore/data/endpoints.json
2025-10-21 09:19:17,959 - MainThread - botocore.hooks - DEBUG - Event choose-service-name: calling handler <function handle_service_name_alias at 0x7e4a0d6300e0>
2025-10-21 09:19:17,973 - MainThread - botocore.loaders - DEBUG - Loading JSON file: /usr/local/aws-cli/v2/2.31.18/dist/awscli/botocore/data/efs/2015-02-01/endpoint-rule-set-1.json
2025-10-21 09:19:17,974 - MainThread - botocore.loaders - DEBUG - Loading JSON file: /usr/local/aws-cli/v2/2.31.18/dist/awscli/botocore/data/partitions.json
2025-10-21 09:19:17,975 - MainThread - botocore.hooks - DEBUG - Event creating-client-class.efs: calling handler <function add_generate_presigned_url at 0x7e4a0d75b880>
2025-10-21 09:19:17,976 - MainThread - botocore.configprovider - DEBUG - Looking for endpoint for efs via: environment_service
2025-10-21 09:19:17,976 - MainThread - botocore.configprovider - DEBUG - Looking for endpoint for efs via: environment_global
2025-10-21 09:19:17,976 - MainThread - botocore.configprovider - DEBUG - Looking for endpoint for efs via: config_service
2025-10-21 09:19:17,977 - MainThread - botocore.configprovider - DEBUG - Looking for endpoint for efs via: config_global
2025-10-21 09:19:17,977 - MainThread - botocore.configprovider - DEBUG - No configured endpoint found.
2025-10-21 09:19:17,980 - MainThread - botocore.endpoint - DEBUG - Setting elasticfilesystem timeout as (60, 60)
2025-10-21 09:19:17,983 - MainThread - botocore.hooks - DEBUG - Event provide-client-params.efs.DescribeMountTargets: calling handler <function base64_decode_input_blobs at 0x7e4a0c7fd940>
2025-10-21 09:19:17,983 - MainThread - botocore.hooks - DEBUG - Event before-parameter-build.efs.DescribeMountTargets: calling handler <function generate_idempotent_uuid at 0x7e4a0d6304a0>
2025-10-21 09:19:17,983 - MainThread - botocore.hooks - DEBUG - Event before-parameter-build.efs.DescribeMountTargets: calling handler <function _handle_request_validation_mode_member at 0x7e4a0d632e80>
2025-10-21 09:19:17,984 - MainThread - botocore.regions - DEBUG - Calling endpoint provider with parameters: {'UseDualStack': False, 'UseFIPS': False, 'Region': 'eu-central-1'}
2025-10-21 09:19:17,985 - MainThread - botocore.regions - DEBUG - Endpoint provider result: https://elasticfilesystem.eu-central-1.amazonaws.com
2025-10-21 09:19:17,985 - MainThread - botocore.hooks - DEBUG - Event before-call.efs.DescribeMountTargets: calling handler <function inject_api_version_header_if_needed at 0x7e4a0d631f80>
2025-10-21 09:19:17,986 - MainThread - botocore.endpoint - DEBUG - Making request for OperationModel(name=DescribeMountTargets) with params: {'url_path': '/2015-02-01/mount-targets', 'query_string': {'FileSystemId': 'fs-0fa0b6d512769dd13'}, 'method': 'GET', 'headers': {'User-Agent': 'aws-cli/2.31.18 md/awscrt#0.27.6 ua/2.1 os/linux#6.8.0-1040-aws md/arch#x86_64 lang/python#3.13.7 md/pyimpl#CPython m/C,E,b,Z,0 cfg/retry-mode#standard md/installer#exe md/distrib#ubuntu.22 md/prompt#off md/command#efs.describe-mount-targets'}, 'body': b'', 'url': 'https://elasticfilesystem.eu-central-1.amazonaws.com/2015-02-01/mount-targets?FileSystemId=fs-0fa0b6d512769dd13', 'context': {'client_region': 'eu-central-1', 'client_config': <botocore.config.Config object at 0x7e4a0b9f5590>, 'has_streaming_input': False, 'auth_type': None, 'unsigned_payload': None, 'auth_options': ['aws.auth#sigv4']}}
2025-10-21 09:19:17,986 - MainThread - botocore.hooks - DEBUG - Event request-created.efs.DescribeMountTargets: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner objectat 0x7e4a0b9f9160>>
2025-10-21 09:19:17,986 - MainThread - botocore.hooks - DEBUG - Event choose-signer.efs.DescribeMountTargets: calling handler <function set_operation_specific_signer at 0x7e4a0d6302c0>
2025-10-21 09:19:17,986 - MainThread - botocore.hooks - DEBUG - Event choose-signer.efs.DescribeMountTargets: calling handler <function _set_auth_scheme_preference_signer at 0x7e4a0d632f20>
2025-10-21 09:19:17,987 - MainThread - botocore.auth - DEBUG - Calculating signature using v4 auth.
2025-10-21 09:19:17,987 - MainThread - botocore.auth - DEBUG - CanonicalRequest:
GET
/2015-02-01/mount-targets
FileSystemId=fs-0fa0b6d512769dd13
host:elasticfilesystem.eu-central-1.amazonaws.com
x-amz-date:20251021T091917Z
x-amz-security-token:secret==
host;x-amz-date;x-amz-security-token
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2025-10-21 09:19:17,987 - MainThread - botocore.auth - DEBUG - StringToSign:
AWS4-HMAC-SHA256
20251021T091917Z
20251021/eu-central-1/elasticfilesystem/aws4_request
6eb84b25b6b9e0959e7b751813cc628735f6647319be60be4f2e6d65d8512ac1
2025-10-21 09:19:17,988 - MainThread - botocore.auth - DEBUG - Signature:
85a16316dc8c44ac7ef1c59ece83017d2d3e6b4c93d8f1b2ee69033e43c4b9c7
2025-10-21 09:19:17,988 - MainThread - botocore.hooks - DEBUG - Event request-created.efs.DescribeMountTargets: calling handler <bound method UserAgentString.rebuild_and_replace_user_agent_handler of <botocore.useragent.UserAgentString object at 0x7e4a0b9f6350>>
2025-10-21 09:19:17,988 - MainThread - botocore.endpoint - DEBUG - Sending http request: <AWSPreparedRequest stream_output=False, method=GET, url=https://elasticfilesystem.eu-central-1.amazonaws.com/2015-02-01/mount-targets?FileSystemId=fs-0fa0b6d512769dd13, headers={'User-Agent': b'aws-cli/2.31.18 md/awscrt#0.27.6 ua/2.1 os/linux#6.8.0-1040-aws md/arch#x86_64 lang/python#3.13.7 md/pyimpl#CPython m/C,E,b,Z,0cfg/retry-mode#standard md/installer#exe md/distrib#ubuntu.22 md/prompt#off md/command#efs.describe-mount-targets', 'X-Amz-Date': b'20251021T091917Z', 'X-Amz-Security-Token': b'secret', 'Authorization': b'AWS4-HMAC-SHA256 Credential=ASIAW2ZPBHIM6I7EK6RA/20251021/eu-central-1/elasticfilesystem/aws4_request, SignedHeaders=host;x-amz-date;x-amz-security-token, Signature=85a16316dc8c44ac7ef1c59ece83017d2d3e6b4c93d8f1b2ee69033e43c4b9c7'}>
2025-10-21 09:19:17,989 - MainThread - botocore.httpsession - DEBUG - Certificate path: /usr/local/aws-cli/v2/2.31.18/dist/awscli/botocore/cacert.pem
2025-10-21 09:19:17,989 - MainThread - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): elasticfilesystem.eu-central-1.amazonaws.com:443
2025-10-21 09:19:18,062 - MainThread - urllib3.connectionpool - DEBUG - https://elasticfilesystem.eu-central-1.amazonaws.com:443 "GET /2015-02-01/mount-targets?FileSystemId=fs-0fa0b6d512769dd13 HTTP/1.1" 404 97
2025-10-21 09:19:18,063 - MainThread - botocore.parsers - DEBUG - Response headers: {'Date': 'Tue, 21 Oct 2025 09:19:18 GMT', 'Content-Type': 'application/json', 'Content-Length': '97', 'Connection': 'keep-alive', 'x-amzn-RequestId': '1f49d52c-4861-4809-8c00-5024b013656e', 'x-amzn-ErrorType': 'FileSystemNotFound:'}
2025-10-21 09:19:18,063 - MainThread - botocore.parsers - DEBUG - Response body:
b'{"ErrorCode":"FileSystemNotFound","Message":"File system \'fs-0fa0b6d512769dd13\' does not exist."}'
2025-10-21 09:19:18,064 - MainThread - botocore.parsers - DEBUG - Response headers: {'Date': 'Tue, 21 Oct 2025 09:19:18 GMT', 'Content-Type': 'application/json', 'Content-Length': '97', 'Connection': 'keep-alive', 'x-amzn-RequestId': '1f49d52c-4861-4809-8c00-5024b013656e', 'x-amzn-ErrorType': 'FileSystemNotFound:'}
2025-10-21 09:19:18,064 - MainThread - botocore.parsers - DEBUG - Response body:
b'{"ErrorCode":"FileSystemNotFound","Message":"File system \'fs-0fa0b6d512769dd13\' does not exist."}'
2025-10-21 09:19:18,065 - MainThread - botocore.hooks - DEBUG - Event needs-retry.efs.DescribeMountTargets: calling handler <bound method RetryHandler.needs_retry of <botocore.retries.standard.RetryHandlerobject at 0x7e4a0b9fb8c0>>
2025-10-21 09:19:18,065 - MainThread - botocore.retries.standard - DEBUG - Not retrying request.
2025-10-21 09:19:18,065 - MainThread - botocore.hooks - DEBUG - Event after-call.efs.DescribeMountTargets: calling handler <bound method RetryQuotaChecker.release_retry_quota of <botocore.retries.standard.RetryQuotaChecker object at 0x7e4a0b9fa7b0>>
2025-10-21 09:19:18,066 - MainThread - awscli.clidriver - DEBUG - Exception caught in main()
Traceback (most recent call last):
File "awscli/clidriver.py", line 530, in main
File "awscli/clidriver.py", line 667, in __call__
File "awscli/clidriver.py", line 881, in __call__
File "awscli/clidriver.py", line 1020, in invoke
File "awscli/clidriver.py", line 1043, in _display_response
File "awscli/formatter.py", line 76, in __call__
File "awscli/botocore/paginate.py", line 483, in build_full_result
File "awscli/botocore/paginate.py", line 267, in __iter__
File "awscli/botocore/context.py", line 124, in wrapper
File "awscli/botocore/paginate.py", line 356, in _make_request
File "awscli/botocore/client.py", line 438, in _api_call
File "awscli/botocore/context.py", line 124, in wrapper
File "awscli/botocore/client.py", line 907, in _make_api_call
botocore.errorfactory.FileSystemNotFound: An error occurred (FileSystemNotFound) when calling the DescribeMountTargets operation: File system 'fs-0fa0b6d512769dd13' does not exist.
An error occurred (FileSystemNotFound) when calling the DescribeMountTargets operation: File system 'fs-0fa0b6d512769dd13' does not exist.
Successful AWS-CLI call
root@ip-10-3-39-93:/efs/shared# aws efs describe-mount-targets --file-system-id arn:aws:elasticfilesystem:eu-central-1:AAAAAAAAAAAA:file-system/fs-0fa0b6d512769dd13 --debug
2025-10-21 09:20:50,328 - MainThread - awscli.clidriver - DEBUG - CLI version: aws-cli/2.31.18 Python/3.13.7 Linux/6.8.0-1040-aws exe/x86_64.ubuntu.22
2025-10-21 09:20:50,329 - MainThread - awscli.clidriver - DEBUG - Arguments entered to CLI: ['efs', 'describe-mount-targets', '--file-system-id', 'arn:aws:elasticfilesystem:eu-central-1:AAAAAAAAAAAA:file-system/fs-0fa0b6d512769dd13', '--debug']
...
2025-10-21 09:20:50,354 - MainThread - botocore.utils - DEBUG - IMDS ENDPOINT: http://169.254.169.254/
2025-10-21 09:20:50,356 - MainThread - botocore.hooks - DEBUG - Event session-initialized: calling handler <function attach_history_handler at 0x765eaef660c0>
2025-10-21 09:20:50,356 - MainThread - botocore.hooks - DEBUG - Event session-initialized: calling handler <function inject_json_file_cache at 0x765eaf01f060>
2025-10-21 09:20:50,369 - MainThread - botocore.loaders - DEBUG - Loading JSON file: /usr/local/aws-cli/v2/2.31.18/dist/awscli/botocore/data/efs/2015-02-01/service-2.json
2025-10-21 09:20:50,376 - MainThread - botocore.hooks - DEBUG - Event building-command-table.efs: calling handler <function add_waiters at 0x765eaee6e660>
2025-10-21 09:20:50,389 - MainThread - botocore.hooks - DEBUG - Event building-command-table.efs: calling handler <bound method AliasSubCommandInjector.on_building_command_table of <awscli.alias.AliasSubCommandInjector object at 0x765eaecdc980>>
2025-10-21 09:20:50,390 - MainThread - awscli.clidriver - DEBUG - OrderedDict({'max-items': <awscli.arguments.CLIArgument object at 0x765eaed470e0>, 'marker': <awscli.arguments.CLIArgument object at 0x765eaed13610>, 'file-system-id': <awscli.arguments.CLIArgument object at 0x765eaed13750>, 'mount-target-id': <awscli.arguments.CLIArgument object at 0x765eaeec23f0>, 'access-point-id': <awscli.arguments.CLIArgument object at 0x765eaeec2520>})
2025-10-21 09:20:50,390 - MainThread - botocore.hooks - DEBUG - Event building-argument-table.efs.describe-mount-targets: calling handler <function add_streaming_output_arg at 0x765eaee6c900>
2025-10-21 09:20:50,391 - MainThread - botocore.hooks - DEBUG - Event building-argument-table.efs.describe-mount-targets: calling handler <function add_cli_input_json at 0x765eaf1fe160>
2025-10-21 09:20:50,391 - MainThread - botocore.hooks - DEBUG - Event building-argument-table.efs.describe-mount-targets: calling handler <function add_cli_input_yaml at 0x765eaf1fef20>
2025-10-21 09:20:50,391 - MainThread - botocore.hooks - DEBUG - Event building-argument-table.efs.describe-mount-targets: calling handler <function unify_paging_params at 0x765eaf0351c0>
2025-10-21 09:20:50,404 - MainThread - botocore.loaders - DEBUG - Loading JSON file: /usr/local/aws-cli/v2/2.31.18/dist/awscli/botocore/data/efs/2015-02-01/paginators-1.json
2025-10-21 09:20:50,405 - MainThread - awscli.customizations.paginate - DEBUG - Modifying paging parameters for operation: DescribeMountTargets
2025-10-21 09:20:50,405 - MainThread - botocore.hooks - DEBUG - Event building-argument-table.efs.describe-mount-targets: calling handler <function add_generate_skeleton at 0x765eaef41800>
2025-10-21 09:20:50,406 - MainThread - botocore.hooks - DEBUG - Event before-building-argument-table-parser.efs.describe-mount-targets: calling handler <bound method OverrideRequiredArgsArgument.override_required_args of <awscli.customizations.cliinput.CliInputJSONArgument object at 0x765eaed47380>>
2025-10-21 09:20:50,406 - MainThread - botocore.hooks - DEBUG - Event before-building-argument-table-parser.efs.describe-mount-targets: calling handler <bound method OverrideRequiredArgsArgument.override_required_args of <awscli.customizations.cliinput.CliInputYAMLArgument object at 0x765eaed474d0>>
2025-10-21 09:20:50,406 - MainThread - botocore.hooks - DEBUG - Event before-building-argument-table-parser.efs.describe-mount-targets: calling handler <bound method GenerateCliSkeletonArgument.override_required_args of <awscli.customizations.generatecliskeleton.GenerateCliSkeletonArgument object at 0x765eaed47620>>
2025-10-21 09:20:50,406 - MainThread - botocore.hooks - DEBUG - Event building-command-table.efs_describe-mount-targets: calling handler <function add_waiters at 0x765eaee6e660>
2025-10-21 09:20:50,406 - MainThread - botocore.hooks - DEBUG - Event building-command-table.efs_describe-mount-targets: calling handler <bound method AliasSubCommandInjector.on_building_command_table of <awscli.alias.AliasSubCommandInjector object at 0x765eaecdc980>>
2025-10-21 09:20:50,407 - MainThread - botocore.hooks - DEBUG - Event operation-args-parsed.efs.describe-mount-targets: calling handler functools.partial(<function check_should_enable_pagination at 0x765eaf035300>, ['marker', 'max-items'], {'max-items': <awscli.arguments.CLIArgument object at 0x765eaed470e0>}, OrderedDict({'max-items': <awscli.customizations.paginate.PageArgument object at 0x765eaed13c50>, 'marker': <awscli.arguments.CLIArgument object at 0x765eaed13610>, 'file-system-id': <awscli.arguments.CLIArgument object at 0x765eaed13750>, 'mount-target-id': <awscli.arguments.CLIArgument object at 0x765eaeec23f0>, 'access-point-id': <awscli.arguments.CLIArgument object at 0x765eaeec2520>, 'cli-input-json': <awscli.customizations.cliinput.CliInputJSONArgument object at 0x765eaed47380>, 'cli-input-yaml': <awscli.customizations.cliinput.CliInputYAMLArgument object at 0x765eaed474d0>, 'starting-token': <awscli.customizations.paginate.PageArgument object at 0x765eaed47770>, 'page-size': <awscli.customizations.paginate.PageArgument object at 0x765eaed139d0>, 'generate-cli-skeleton': <awscli.customizations.generatecliskeleton.GenerateCliSkeletonArgument object at 0x765eaed47620>}))
2025-10-21 09:20:50,407 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.max-items: calling handler <awscli.paramfile.URIArgumentHandler object at 0x765eaecdd400>
2025-10-21 09:20:50,408 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.marker: calling handler <awscli.paramfile.URIArgumentHandler object at 0x765eaecdd400>
2025-10-21 09:20:50,408 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.file-system-id: calling handler <awscli.paramfile.URIArgumentHandler object at 0x765eaecdd400>
2025-10-21 09:20:50,408 - MainThread - botocore.hooks - DEBUG - Event process-cli-arg.efs.describe-mount-targets: calling handler <awscli.argprocess.ParamShorthandParser object at 0x765eaefc6ba0>
2025-10-21 09:20:50,408 - MainThread - awscli.arguments - DEBUG - Unpacked value of 'arn:aws:elasticfilesystem:eu-central-1:AAAAAAAAAAAA:file-system/fs-0fa0b6d512769dd13' for parameter "file_system_id": 'arn:aws:elasticfilesystem:eu-central-1:AAAAAAAAAAAA:file-system/fs-0fa0b6d512769dd13'
2025-10-21 09:20:50,409 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.mount-target-id: calling handler <awscli.paramfile.URIArgumentHandler object at 0x765eaecdd400>
2025-10-21 09:20:50,409 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.access-point-id: calling handler <awscli.paramfile.URIArgumentHandler object at 0x765eaecdd400>
2025-10-21 09:20:50,409 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.cli-input-json: calling handler <awscli.paramfile.URIArgumentHandler object at 0x765eaecdd400>
2025-10-21 09:20:50,409 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.cli-input-yaml: calling handler <awscli.paramfile.URIArgumentHandler object at 0x765eaecdd400>
2025-10-21 09:20:50,410 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.starting-token: calling handler <awscli.paramfile.URIArgumentHandler object at 0x765eaecdd400>
2025-10-21 09:20:50,410 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.page-size: calling handler <awscli.paramfile.URIArgumentHandler object at 0x765eaecdd400>
2025-10-21 09:20:50,410 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.elasticfilesystem.describe-mount-targets.generate-cli-skeleton: calling handler <awscli.paramfile.URIArgumentHandler object at 0x765eaecdd400>
2025-10-21 09:20:50,410 - MainThread - botocore.hooks - DEBUG - Event calling-command.efs.describe-mount-targets: calling handler <bound method CliInputArgument.add_to_call_parameters of <awscli.customizations.cliinput.CliInputJSONArgument object at 0x765eaed47380>>
2025-10-21 09:20:50,411 - MainThread - botocore.hooks - DEBUG - Event calling-command.efs.describe-mount-targets: calling handler <bound method CliInputArgument.add_to_call_parameters of <awscli.customizations.cliinput.CliInputYAMLArgument object at 0x765eaed474d0>>
2025-10-21 09:20:50,411 - MainThread - botocore.hooks - DEBUG - Event calling-command.efs.describe-mount-targets: calling handler <bound method GenerateCliSkeletonArgument.generate_skeleton of <awscli.customizations.generatecliskeleton.GenerateCliSkeletonArgument object at 0x765eaed47620>>
2025-10-21 09:20:50,411 - MainThread - botocore.hooks - DEBUG - Event calling-command.efs.describe-mount-targets: calling handler functools.partial(<function check_should_enable_pagination_call_parameters at 0x765eaf035760>, ['Marker', 'MaxItems'])
2025-10-21 09:20:50,411 - MainThread - botocore.utils - DEBUG - IMDS ENDPOINT: http://169.254.169.254/
2025-10-21 09:20:50,413 - MainThread - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): 169.254.169.254:80
2025-10-21 09:20:50,415 - MainThread - urllib3.connectionpool - DEBUG - http://169.254.169.254:80 "PUT /latest/api/token HTTP/1.1" 200 56
2025-10-21 09:20:50,416 - MainThread - urllib3.connectionpool - DEBUG - Resetting dropped connection: 169.254.169.254
2025-10-21 09:20:50,418 - MainThread - urllib3.connectionpool - DEBUG - http://169.254.169.254:80 "GET /latest/meta-data/placement/availability-zone/ HTTP/1.1" 200 13
2025-10-21 09:20:50,419 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: env
2025-10-21 09:20:50,419 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: assume-role
2025-10-21 09:20:50,419 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: assume-role-with-web-identity
2025-10-21 09:20:50,419 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: sso
2025-10-21 09:20:50,420 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: shared-credentials-file
2025-10-21 09:20:50,420 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: custom-process
2025-10-21 09:20:50,420 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: config-file
2025-10-21 09:20:50,420 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: ec2-credentials-file
2025-10-21 09:20:50,420 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: boto-config
2025-10-21 09:20:50,420 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: container-role
2025-10-21 09:20:50,421 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: iam-role
2025-10-21 09:20:50,421 - MainThread - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): 169.254.169.254:80
2025-10-21 09:20:50,423 - MainThread - urllib3.connectionpool - DEBUG - http://169.254.169.254:80 "PUT /latest/api/token HTTP/1.1" 200 56
2025-10-21 09:20:50,423 - MainThread - urllib3.connectionpool - DEBUG - Resetting dropped connection: 169.254.169.254
2025-10-21 09:20:50,425 - MainThread - urllib3.connectionpool - DEBUG - http://169.254.169.254:80 "GET /latest/meta-data/iam/security-credentials/ HTTP/1.1" 200 15
2025-10-21 09:20:50,426 - MainThread - urllib3.connectionpool - DEBUG - Resetting dropped connection: 169.254.169.254
2025-10-21 09:20:50,428 - MainThread - urllib3.connectionpool - DEBUG - http://169.254.169.254:80 "GET /latest/meta-data/iam/security-credentials/Ec2JumpHostRole HTTP/1.1" 200 1586
2025-10-21 09:20:50,432 - MainThread - botocore.credentials - DEBUG - Found credentials from IAM Role: Ec2JumpHostRole
2025-10-21 09:20:50,435 - MainThread - botocore.loaders - DEBUG - Loading JSON file: /usr/local/aws-cli/v2/2.31.18/dist/awscli/botocore/data/endpoints.json
2025-10-21 09:20:50,475 - MainThread - botocore.hooks - DEBUG - Event choose-service-name: calling handler <function handle_service_name_alias at 0x765eb00300e0>
2025-10-21 09:20:50,488 - MainThread - botocore.loaders - DEBUG - Loading JSON file: /usr/local/aws-cli/v2/2.31.18/dist/awscli/botocore/data/efs/2015-02-01/endpoint-rule-set-1.json
2025-10-21 09:20:50,489 - MainThread - botocore.loaders - DEBUG - Loading JSON file: /usr/local/aws-cli/v2/2.31.18/dist/awscli/botocore/data/partitions.json
2025-10-21 09:20:50,491 - MainThread - botocore.hooks - DEBUG - Event creating-client-class.efs: calling handler <function add_generate_presigned_url at 0x765eb015b880>
2025-10-21 09:20:50,491 - MainThread - botocore.configprovider - DEBUG - Looking for endpoint for efs via: environment_service
2025-10-21 09:20:50,491 - MainThread - botocore.configprovider - DEBUG - Looking for endpoint for efs via: environment_global
2025-10-21 09:20:50,492 - MainThread - botocore.configprovider - DEBUG - Looking for endpoint for efs via: config_service
2025-10-21 09:20:50,492 - MainThread - botocore.configprovider - DEBUG - Looking for endpoint for efs via: config_global
2025-10-21 09:20:50,492 - MainThread - botocore.configprovider - DEBUG - No configured endpoint found.
2025-10-21 09:20:50,495 - MainThread - botocore.endpoint - DEBUG - Setting elasticfilesystem timeout as (60, 60)
2025-10-21 09:20:50,498 - MainThread - botocore.hooks - DEBUG - Event provide-client-params.efs.DescribeMountTargets: calling handler <function base64_decode_input_blobs at 0x765eaf1fd940>
2025-10-21 09:20:50,498 - MainThread - botocore.hooks - DEBUG - Event before-parameter-build.efs.DescribeMountTargets: calling handler <function generate_idempotent_uuid at 0x765eb00304a0>
2025-10-21 09:20:50,498 - MainThread - botocore.hooks - DEBUG - Event before-parameter-build.efs.DescribeMountTargets: calling handler <function _handle_request_validation_mode_member at 0x765eb0032e80>
2025-10-21 09:20:50,498 - MainThread - botocore.regions - DEBUG - Calling endpoint provider with parameters: {'UseDualStack': False, 'UseFIPS': False, 'Region': 'eu-central-1'}
2025-10-21 09:20:50,499 - MainThread - botocore.regions - DEBUG - Endpoint provider result: https://elasticfilesystem.eu-central-1.amazonaws.com
2025-10-21 09:20:50,500 - MainThread - botocore.hooks - DEBUG - Event before-call.efs.DescribeMountTargets: calling handler <function inject_api_version_header_if_needed at 0x765eb0031f80>
2025-10-21 09:20:50,500 - MainThread - botocore.endpoint - DEBUG - Making request for OperationModel(name=DescribeMountTargets) with params: {'url_path': '/2015-02-01/mount-targets', 'query_string': {'FileSystemId': 'arn:aws:elasticfilesystem:eu-central-1:AAAAAAAAAAAA:file-system/fs-0fa0b6d512769dd13'}, 'method': 'GET', 'headers': {'User-Agent': 'aws-cli/2.31.18 md/awscrt#0.27.6 ua/2.1 os/linux#6.8.0-1040-aws md/arch#x86_64 lang/python#3.13.7 md/pyimpl#CPython m/b,0,C,E,Z cfg/retry-mode#standard md/installer#exe md/distrib#ubuntu.22 md/prompt#off md/command#efs.describe-mount-targets'}, 'body': b'', 'url': 'https://elasticfilesystem.eu-central-1.amazonaws.com/2015-02-01/mount-targets?FileSystemId=arn%3Aaws%3Aelasticfilesystem%3Aeu-central-1%3AAAAAAAAAAAAA%3Afile-system%2Ffs-0fa0b6d512769dd13', 'context': {'client_region': 'eu-central-1', 'client_config': <botocore.config.Config object at 0x765eae3f5590>, 'has_streaming_input': False, 'auth_type': None, 'unsigned_payload': None, 'auth_options': ['aws.auth#sigv4']}}
2025-10-21 09:20:50,501 - MainThread - botocore.hooks - DEBUG - Event request-created.efs.DescribeMountTargets: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner objectat 0x765eae3f9160>>
2025-10-21 09:20:50,501 - MainThread - botocore.hooks - DEBUG - Event choose-signer.efs.DescribeMountTargets: calling handler <function set_operation_specific_signer at 0x765eb00302c0>
2025-10-21 09:20:50,501 - MainThread - botocore.hooks - DEBUG - Event choose-signer.efs.DescribeMountTargets: calling handler <function _set_auth_scheme_preference_signer at 0x765eb0032f20>
2025-10-21 09:20:50,502 - MainThread - botocore.auth - DEBUG - Calculating signature using v4 auth.
2025-10-21 09:20:50,502 - MainThread - botocore.auth - DEBUG - CanonicalRequest:
GET
/2015-02-01/mount-targets
FileSystemId=arn%3Aaws%3Aelasticfilesystem%3Aeu-central-1%3AAAAAAAAAAAAA%3Afile-system%2Ffs-0fa0b6d512769dd13
host:elasticfilesystem.eu-central-1.amazonaws.com
x-amz-date:20251021T092050Z
x-amz-security-token:secret==
host;x-amz-date;x-amz-security-token
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2025-10-21 09:20:50,502 - MainThread - botocore.auth - DEBUG - StringToSign:
AWS4-HMAC-SHA256
20251021T092050Z
20251021/eu-central-1/elasticfilesystem/aws4_request
ab308005e784190e68c6cb983ca4e5c90f926aae6aac1dfec3dcca89f76dc7fa
2025-10-21 09:20:50,502 - MainThread - botocore.auth - DEBUG - Signature:
7261f33864d83ad559c4c1941309df8cd1a36b857801eb702f10dcc6c32d5a0f
2025-10-21 09:20:50,502 - MainThread - botocore.hooks - DEBUG - Event request-created.efs.DescribeMountTargets: calling handler <bound method UserAgentString.rebuild_and_replace_user_agent_handler of <botocore.useragent.UserAgentString object at 0x765eae3f6350>>
2025-10-21 09:20:50,503 - MainThread - botocore.endpoint - DEBUG - Sending http request: <AWSPreparedRequest stream_output=False, method=GET, url=https://elasticfilesystem.eu-central-1.amazonaws.com/2015-02-01/mount-targets?FileSystemId=arn%3Aaws%3Aelasticfilesystem%3Aeu-central-1%3AAAAAAAAAAAAA%3Afile-system%2Ffs-0fa0b6d512769dd13, headers={'User-Agent': b'aws-cli/2.31.18 md/awscrt#0.27.6 ua/2.1 os/linux#6.8.0-1040-aws md/arch#x86_64 lang/python#3.13.7 md/pyimpl#CPython m/b,0,C,E,Z cfg/retry-mode#standard md/installer#exe md/distrib#ubuntu.22 md/prompt#off md/command#efs.describe-mount-targets', 'X-Amz-Date':b'20251021T092050Z', 'X-Amz-Security-Token': b'secret', 'Authorization': b'AWS4-HMAC-SHA256 Credential=ASIAW2ZPBHIM6I7EK6RA/20251021/eu-central-1/elasticfilesystem/aws4_request, SignedHeaders=host;x-amz-date;x-amz-security-token, Signature=7261f33864d83ad559c4c1941309df8cd1a36b857801eb702f10dcc6c32d5a0f'}>
2025-10-21 09:20:50,503 - MainThread - botocore.httpsession - DEBUG - Certificate path: /usr/local/aws-cli/v2/2.31.18/dist/awscli/botocore/cacert.pem
2025-10-21 09:20:50,504 - MainThread - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): elasticfilesystem.eu-central-1.amazonaws.com:443
2025-10-21 09:20:50,571 - MainThread - urllib3.connectionpool - DEBUG - https://elasticfilesystem.eu-central-1.amazonaws.com:443 "GET /2015-02-01/mount-targets?FileSystemId=arn%3Aaws%3Aelasticfilesystem%3Aeu-central-1%3AAAAAAAAAAAAA%3Afile-system%2Ffs-0fa0b6d512769dd13 HTTP/1.1" 200 1145
2025-10-21 09:20:50,571 - MainThread - botocore.parsers - DEBUG - Response headers: {'Date': 'Tue, 21 Oct 2025 09:20:50 GMT', 'Content-Type': 'application/json', 'Content-Length': '1145', 'Connection': 'keep-alive', 'x-amzn-RequestId': '95316d99-0c1d-4c7f-b473-6a30be7a5c77'}
2025-10-21 09:20:50,572 - MainThread - botocore.parsers - DEBUG - Response body:
b'{"Marker":null,"MountTargets":[{"AvailabilityZoneId":"euc1-az1","AvailabilityZoneName":"eu-central-1c","FileSystemId":"fs-0fa0b6d512769dd13","IpAddress":"10.1.12.12","Ipv6Address":null,"LifeCycleState":"available","MountTargetId":"fsmt-087f72a39309d59d4","NetworkInterfaceId":"eni-0eeb5f72a54f7727c","OwnerId":"AAAAAAAAAAAA","SubnetId":"subnet-061174406f7f8a367","VpcId":"vpc-0e78542d4e0f9b84c"},{"AvailabilityZoneId":"euc1-az3","AvailabilityZoneName":"eu-central-1b","FileSystemId":"fs-0fa0b6d512769dd13","IpAddress":"10.1.44.30","Ipv6Address":null,"LifeCycleState":"available","MountTargetId":"fsmt-08e760d424d966e6b","NetworkInterfaceId":"eni-0c176045d5a774487","OwnerId":"AAAAAAAAAAAA","SubnetId":"subnet-0444ba7ac84288d7f","VpcId":"vpc-0e78542d4e0f9b84c"},{"AvailabilityZoneId":"euc1-az2","AvailabilityZoneName":"eu-central-1a","FileSystemId":"fs-0fa0b6d512769dd13","IpAddress":"10.1.28.35","Ipv6Address":null,"LifeCycleState":"available","MountTargetId":"fsmt-0d6bda15bf912d91f","NetworkInterfaceId":"eni-09051fe2172a4d6c5","OwnerId":"AAAAAAAAAAAA","SubnetId":"subnet-0a94d7656c57b8b51","VpcId":"vpc-0e78542d4e0f9b84c"}],"NextMarker":null}'
2025-10-21 09:20:50,572 - MainThread - botocore.hooks - DEBUG - Event needs-retry.efs.DescribeMountTargets: calling handler <bound method RetryHandler.needs_retry of <botocore.retries.standard.RetryHandlerobject at 0x765eae3fb8c0>>
2025-10-21 09:20:50,573 - MainThread - botocore.retries.standard - DEBUG - Not retrying request.
2025-10-21 09:20:50,573 - MainThread - botocore.hooks - DEBUG - Event after-call.efs.DescribeMountTargets: calling handler <bound method RetryQuotaChecker.release_retry_quota of <botocore.retries.standard.RetryQuotaChecker object at 0x765eae3fa7b0>>
{
"MountTargets": [
{
"OwnerId": "AAAAAAAAAAAA",
"MountTargetId": "fsmt-087f72a39309d59d4",
"FileSystemId": "fs-0fa0b6d512769dd13",
"SubnetId": "subnet-061174406f7f8a367",
"LifeCycleState": "available",
"IpAddress": "10.1.12.12",
"NetworkInterfaceId": "eni-0eeb5f72a54f7727c",
"AvailabilityZoneId": "euc1-az1",
"AvailabilityZoneName": "eu-central-1c",
"VpcId": "vpc-0e78542d4e0f9b84c"
},
{
"OwnerId": "AAAAAAAAAAAA",
"MountTargetId": "fsmt-08e760d424d966e6b",
"FileSystemId": "fs-0fa0b6d512769dd13",
"SubnetId": "subnet-0444ba7ac84288d7f",
"LifeCycleState": "available",
"IpAddress": "10.1.44.30",
"NetworkInterfaceId": "eni-0c176045d5a774487",
"AvailabilityZoneId": "euc1-az3",
"AvailabilityZoneName": "eu-central-1b",
"VpcId": "vpc-0e78542d4e0f9b84c"
},
{
"OwnerId": "AAAAAAAAAAAA",
"MountTargetId": "fsmt-0d6bda15bf912d91f",
"FileSystemId": "fs-0fa0b6d512769dd13",
"SubnetId": "subnet-0a94d7656c57b8b51",
"LifeCycleState": "available",
"IpAddress": "10.1.28.35",
"NetworkInterfaceId": "eni-09051fe2172a4d6c5",
"AvailabilityZoneId": "euc1-az2",
"AvailabilityZoneName": "eu-central-1a",
"VpcId": "vpc-0e78542d4e0f9b84c"
}
]
}
Metadata
Metadata
Assignees
Labels
No labels