{"id":13706430,"url":"https://github.com/andyalm/mount-aws","last_synced_at":"2026-02-26T00:08:38.730Z","repository":{"id":64023572,"uuid":"435744714","full_name":"andyalm/mount-aws","owner":"andyalm","description":"An experimental powershell provider that allows you to browse various aws services as a filesystem","archived":false,"fork":false,"pushed_at":"2024-12-11T18:46:11.000Z","size":632,"stargazers_count":4,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-18T20:54:29.263Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andyalm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-12-07T04:40:56.000Z","updated_at":"2023-01-27T17:30:34.000Z","dependencies_parsed_at":"2024-10-28T16:17:56.269Z","dependency_job_id":"5705dbaf-f04d-49d2-b9e7-9026ac48bbfd","html_url":"https://github.com/andyalm/mount-aws","commit_stats":null,"previous_names":[],"tags_count":47,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andyalm%2Fmount-aws","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andyalm%2Fmount-aws/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andyalm%2Fmount-aws/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andyalm%2Fmount-aws/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andyalm","download_url":"https://codeload.github.com/andyalm/mount-aws/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245115670,"owners_count":20563207,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-02T22:00:56.024Z","updated_at":"2026-02-26T00:08:38.718Z","avatar_url":"https://github.com/andyalm.png","language":"C#","readme":"# MountAws \u003cimg src=\"mount-aws.png\" width=\"100\" alt=\"MountAws\" /\u003e\nAn experimental powershell provider that allows you to browse various aws services as a filesystem\n\n## Installation\n\n```powershell\nInstall-Module MountAws\n\n# Consider adding the following line to your profile:\nImport-Module MountAws\n```\n\n## Usage\n\nA drive called `aws` is automatically added to your powershell module when you import the module.\nYou can run `dir` within any directory to list the objects within. This essentially provides a self-documented way\nof navigating the aws service you are using. Tab completion works as well.\n\nThe top 3 levels of the virtual filesystem is constructed like this:\n\n```\naws:/\u003caws-profile-name\u003e/\u003cregion\u003e/\u003caws-service/\n```\n\n * `aws-profile-name` - An aws profile defined in your `~/.aws/config` file used to authenticate with aws\n * `region` - The region in which you wish to explore (e.g. `us-east-1`)\n * `aws-service` - The aws service you wish to explore. The supported services are documented below, or you can always run `dir` within the regions directory for a complete listing.\n\nFor an example of how it works. Here is an example of navigating an s3 bucket:\n\n```powershell\n$ cd aws:/default/us-east-1/s3/buckets\n$ dir\n\nName\n----\nmy-bucket\nanother-my-bucket\n\n$ cd my-bucket\n$ dir\n\nName    Description\n----    -----------\npolicy  A virtual file whose content contains the bucket policy\nobjects Navigate the objects in the s3 bucket like a filesystem\n\n$ cd objects\n$ dir\n\nName                  ItemType\n----                  --------\nmy-directory          Directory\nanother-directory     Directory\n\n$ cd my-directory\n\nName                     ItemType\n----                     --------\nmy-subdirectory          Directory\nmy-file.json             File\n\n$ gc my-file.json\n{ \"a-key\": 3 }\n```\n\n## Supported AWS Services\n\nThe following services are currently supported:\n\n * [ACM](docs/Services/ACM.md)\n * [Cloudfront](docs/Services/Cloudfront.md)\n * [CloudWatch Logs](docs/Services/CloudwatchLogs.md)\n * [DynamoDB](docs/Services/DynamoDb.md)\n * [EC2](docs/Services/EC2.md)\n * [ECR](docs/Services/ECR.md)\n * [ECS](docs/Services/ECS.md)\n * [Elasticache](docs/Services/Elasticache.md)\n * [ELBV2](docs/Services/ELBV2.md)\n * [IAM](docs/Services/IAM.md)\n * [Lambda](docs/Services/Lambda.md)\n * [RDS](docs/Services/RDS.md)\n * [Route53](docs/Services/Route53.md)\n * [S3](docs/Services/S3.md)\n * [Service Discovery (aka Cloud Map)](docs/Services/ServiceDiscovery.md)\n * [WAFv2](docs/Services/WAFv2.md)\n\n## Supported utility commands\n\n * `Switch-MountAwsProfile` - Will navigate you to the equivalent path for the given aws profile\n * `Switch-MountAwsRegion` - Will navigate you to the equivalent path for the given aws region\n\n## Contributing\n\nI'm only one guy, so have focused my efforts on supporting services I'm familiar with and use frequently. I plan to add support for more services as I have time. However, I also welcome contributions from others. Feel free to submit PR's that support additional services. I have put together a [developer guide](docs/DeveloperGuide.md) to help you figure out how to contribute.","funding_links":[],"categories":["C# #"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandyalm%2Fmount-aws","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandyalm%2Fmount-aws","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandyalm%2Fmount-aws/lists"}