cloudx-proxy 0.4.11__tar.gz → 0.4.13__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/CHANGELOG.md +14 -0
  2. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/PKG-INFO +1 -1
  3. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/cloudx_proxy/_version.py +2 -2
  4. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/cloudx_proxy/cli.py +32 -28
  5. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/cloudx_proxy.egg-info/PKG-INFO +1 -1
  6. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/.clinerules +0 -0
  7. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/.github/workflows/release.yml +0 -0
  8. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/.gitignore +0 -0
  9. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/.releaserc +0 -0
  10. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/CONTRIBUTING.md +0 -0
  11. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/LICENSE +0 -0
  12. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/README.md +0 -0
  13. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/cloudx_proxy/_1password.py +0 -0
  14. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/cloudx_proxy/__init__.py +0 -0
  15. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/cloudx_proxy/core.py +0 -0
  16. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/cloudx_proxy/setup.py +0 -0
  17. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/cloudx_proxy.egg-info/SOURCES.txt +0 -0
  18. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/cloudx_proxy.egg-info/dependency_links.txt +0 -0
  19. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/cloudx_proxy.egg-info/entry_points.txt +0 -0
  20. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/cloudx_proxy.egg-info/requires.txt +0 -0
  21. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/cloudx_proxy.egg-info/top_level.txt +0 -0
  22. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/package.json +0 -0
  23. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/pyproject.toml +0 -0
  24. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.13}/setup.cfg +0 -0
@@ -1,3 +1,17 @@
1
+ ## [0.4.13](https://github.com/easytocloud/cloudX-proxy/compare/v0.4.12...v0.4.13) (2025-03-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * improve help text formatting using Click's \b character ([3dc4230](https://github.com/easytocloud/cloudX-proxy/commit/3dc4230cfa6fef72eee7521dca77c6717772e782))
7
+
8
+ ## [0.4.12](https://github.com/easytocloud/cloudX-proxy/compare/v0.4.11...v0.4.12) (2025-03-12)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * improve help text formatting for example usage ([7513c51](https://github.com/easytocloud/cloudX-proxy/commit/7513c51b5cfa305f828f54d30d7f26f70a85a0b8))
14
+
1
15
  ## [0.4.11](https://github.com/easytocloud/cloudX-proxy/compare/v0.4.10...v0.4.11) (2025-03-12)
2
16
 
3
17
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: cloudx-proxy
3
- Version: 0.4.11
3
+ Version: 0.4.13
4
4
  Summary: SSH proxy command to connect VSCode with Cloud9/CloudX instance using AWS Systems Manager
5
5
  Author-email: easytocloud <info@easytocloud.com>
6
6
  License: MIT License
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '0.4.11'
21
- __version_tuple__ = version_tuple = (0, 4, 11)
20
+ __version__ = version = '0.4.13'
21
+ __version_tuple__ = version_tuple = (0, 4, 13)
@@ -11,16 +11,16 @@ from .setup import CloudXSetup
11
11
  @click.version_option(version=__version__)
12
12
  def cli():
13
13
  """cloudx-proxy - SSH proxy to connect VSCode Remote SSH to EC2 instances using SSM.
14
-
15
- This tool enables seamless SSH connections from VSCode to EC2 instances using AWS Systems Manager,
16
- eliminating the need for direct SSH access or public IP addresses.
17
-
18
- Main commands:
19
-
20
- setup - Configure AWS profile, SSH keys, and SSH configuration
21
- connect - Connect to an EC2 instance via SSM
22
- list - List configured SSH hosts
23
- """
14
+
15
+ This tool enables seamless SSH connections from VSCode to EC2 instances using AWS Systems Manager,
16
+ eliminating the need for direct SSH access or public IP addresses.
17
+
18
+ \b
19
+ Main commands:
20
+ \b
21
+ setup - Configure AWS profile, SSH keys, and SSH configuration
22
+ connect - Connect to an EC2 instance via SSM
23
+ list - List configured SSH hosts"""
24
24
  pass
25
25
 
26
26
  @cli.command()
@@ -36,12 +36,13 @@ def connect(instance_id: str, port: int, profile: str, region: str, ssh_key: str
36
36
 
37
37
  INSTANCE_ID is the EC2 instance ID to connect to (e.g., i-0123456789abcdef0)
38
38
 
39
+ \b
39
40
  Example usage:
40
-
41
- cloudx-proxy connect i-0123456789abcdef0 22
42
- cloudx-proxy connect i-0123456789abcdef0 22 --profile myprofile --region eu-west-1
43
- cloudx-proxy connect i-0123456789abcdef0 22 --ssh-config ~/.ssh/cloudx/config
44
- cloudx-proxy connect i-0123456789abcdef0 22 --aws-env prod
41
+ \b
42
+ cloudx-proxy connect i-0123456789abcdef0 22
43
+ cloudx-proxy connect i-0123456789abcdef0 22 --profile myprofile --region eu-west-1
44
+ cloudx-proxy connect i-0123456789abcdef0 22 --ssh-config ~/.ssh/cloudx/config
45
+ cloudx-proxy connect i-0123456789abcdef0 22 --aws-env prod
45
46
  """
46
47
  try:
47
48
  client = CloudXProxy(
@@ -76,21 +77,23 @@ def setup(profile: str, ssh_key: str, ssh_config: str, aws_env: str, use_1passwo
76
77
  instance: str, hostname: str, non_interactive: bool):
77
78
  """Set up AWS profile, SSH keys, and configuration for CloudX.
78
79
 
80
+ \b
79
81
  This command will:
80
-
82
+ \b
81
83
  1. Set up AWS profile with credentials
82
84
  2. Create or use existing SSH key
83
85
  3. Configure SSH for CloudX instances
84
86
  4. Check instance setup status
85
87
 
88
+ \b
86
89
  Example usage:
87
-
88
- cloudx-proxy setup
89
- cloudx-proxy setup --profile myprofile --ssh-key mykey
90
- cloudx-proxy setup --ssh-config ~/.ssh/cloudx/config
91
- cloudx-proxy setup --1password
92
- cloudx-proxy setup --1password Work
93
- cloudx-proxy setup --instance i-0123456789abcdef0 --hostname myserver --yes
90
+ \b
91
+ cloudx-proxy setup
92
+ cloudx-proxy setup --profile myprofile --ssh-key mykey
93
+ cloudx-proxy setup --ssh-config ~/.ssh/cloudx/config
94
+ cloudx-proxy setup --1password
95
+ cloudx-proxy setup --1password Work
96
+ cloudx-proxy setup --instance i-0123456789abcdef0 --hostname myserver --yes
94
97
  """
95
98
  try:
96
99
  setup = CloudXSetup(
@@ -150,12 +153,13 @@ def list(ssh_config: str, environment: str, detailed: bool):
150
153
  This command parses the SSH configuration file and displays all configured cloudx-proxy hosts.
151
154
  Hosts are grouped by environment for easier navigation.
152
155
 
156
+ \b
153
157
  Example usage:
154
-
155
- cloudx-proxy list
156
- cloudx-proxy list --environment dev
157
- cloudx-proxy list --ssh-config ~/.ssh/cloudx/config
158
- cloudx-proxy list --detailed
158
+ \b
159
+ cloudx-proxy list
160
+ cloudx-proxy list --environment dev
161
+ cloudx-proxy list --ssh-config ~/.ssh/cloudx/config
162
+ cloudx-proxy list --detailed
159
163
  """
160
164
  try:
161
165
  # Determine SSH config file path
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: cloudx-proxy
3
- Version: 0.4.11
3
+ Version: 0.4.13
4
4
  Summary: SSH proxy command to connect VSCode with Cloud9/CloudX instance using AWS Systems Manager
5
5
  Author-email: easytocloud <info@easytocloud.com>
6
6
  License: MIT License
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes