Cloudanix Joins AWS ISV Accelerate Program

Cloudanix – Your Partner in Cloud Security Excellence

Unveiling Cloud Console Link Project - Your Shortcut to Cloud Resources

  • Sujay Maheshwari Sujay Maheshwari
  • Monday, Oct 02, 2023

We are thrilled to announce a significant milestone in our journey towards simplifying Cloud Management. Today, we are open sourcing our powerful Python Library and corresponding PyPI package!

What is Cloud Console Link?

Cloud Console Link is a Python Library and PyPI Package which generates direct links to the Cloud Resources provisioned in AWS, GCP and Azure. Today, it supports three clouds (AWS, GCP and Azure) and hundreds of resource types for across these three clouds.

Its is designed to streamline your cloud management experience. It empowers developers and cloud administrators to effortlessly generate cloud console links from cloud resource identifiers. In other words, it provides you with a direct, one-click access to specific resources in your cloud provider’s service, saving you valuable time and effort.

Imagine having the ability to take a resource identifier, like an S3 bucket name, and instantaneously generate the corresponding AWS console URL. Cloud Console Link makes this a reality for a multitude of cloud providers. Whether it’s AWS, Google Cloud, Azure, or others, Cloud Console Link has got you covered.

In this article we will show Cloud Console Link Python Package and its installation steps and how to use it.

How we use Cloud Console Link at Cloudanix?

At Cloudanix, we use Cloud Console Link package to generate console links for all resources across AWS, GCP and Azure and display it on the Cloudanix Dashboard for the users. Using this console link users can directly land on to the particular cloud resource with Findings with one click. No manual search is needed in the Cloud Providers console.

Console Link for EC2 Instance

Installation

To dive into Cloud Console Link and explore its capabilities, head over to our GitHub Repository here. You can also install the PyPI package directly using:

pip install cloudconsolelink

Links:

Usage

Import Package

For AWS:

from cloudconsolelink.clouds.aws import AWSLinker

For Azure:

from cloudconsolelink.clouds.azure import AzureLinker

For GCP:

from cloudconsolelink.clouds.gcp import GCPLinker

Generate Console Link

Call method get_console_link()

Examples:

  1. AWS
from cloudconsolelink.clouds.aws import AWSLinker

aws = AWSLinker()
arn = "arn:aws:ec2:us-east1:1234567890:instance/instance1"
console_link = aws.get_console_link(arn=arn)
  1. Azure Management
from cloudconsolelink.clouds.azure import AzureLinker

azure = AzureLinker()
id = "/subscriptions/5592e8dc/resourceGroups/testgroup"
primary_ad_domain_name = "QA123.onmicrosoft.com"
console_link = azure.get_console_link(id=id, primary_ad_domain_name=primary_ad_domain_name)
  1. Azure IAM
from cloudconsolelink.clouds.azure import AzureLinker

azure = AzureLinker()
id = "1234567890"
iam_entity_type = "user"
console_link = azure.get_console_link(id=id, iam_entity_type=iam_entity_type)
  1. GCP
from cloudconsolelink.clouds.gcp import GCPLinker

gcp = GCPLinker()
bucket_name = "xyz"
resource_name = "storage_bucket"
console_link = gcp.get_console_link(bucket_name=bucket_name, resource_name=resource_name)

Why Open Source?

We believe in the power of community-driven development. By open sourcing Cloud Console Link, our aim is to collaborate with other Cloud Enthusiasts and Practitioners. This is our way of giving back to the community that has supported us in our Journey.

At Cloudanix, we are dedicated to contributing to this ecosystem. By releasing Cloud Console Link to the public, we hope to inspire others and create a positive impact on cloud management practices.

We welcome contributions from the community. If you have ideas, suggestions, or would like to report issues, feel free to join us on GitHub. Thank you for being a part of our journey towards a more seamless cloud experience. Happy Coding!

Blog

Read More Posts

Your Trusted Partner in Data Protection with Cutting-Edge Solutions for
Comprehensive Data Security.

Friday, Aug 08, 2025

User Access Review in Cloud Security: A Foundational Guide to Securing Your Cloud Environment

Introduction: The Unseen Gatekeepers of Cloud Security In the rapidly expanding landscape of cloud computing, organi

Read More

Saturday, Aug 02, 2025

Streamlining Just-in-Time Access: Balancing Security and Developer Workflow Integration

Introduction Just-in-Time (JIT) access is an undisputed cornerstone of modern cloud security. By eliminating standin

Read More

Tuesday, Jul 22, 2025

Unauthorized Privilege Escalation & Secure Elevation: A Blueprint for Cloud Security Leadership

Introduction In the expansive and hyper-dynamic realm of enterprise cloud, a silent and insidious threat often overs

Read More
cta-image

Secure Every Layer of Your Cloud Stack with Cloudanix

Unify your security workflows with Cloudanix — one dashboard for misconfigurations, drift detection, CI/CD, and identity protection.

Get Started