{"id":15699293,"url":"https://github.com/iann0036/cloudformationmulticloud","last_synced_at":"2026-03-09T04:33:04.782Z","repository":{"id":69948224,"uuid":"160510228","full_name":"iann0036/CloudFormationMultiCloud","owner":"iann0036","description":"Add support for Azure and Google Cloud resources in CloudFormation.","archived":false,"fork":false,"pushed_at":"2019-07-09T11:00:35.000Z","size":411,"stargazers_count":7,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-02T11:54:49.849Z","etag":null,"topics":["aws","azure","cloudformation","cloudformation-custom-resource","google-cloud-platform"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iann0036.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":"2018-12-05T11:46:53.000Z","updated_at":"2024-10-03T17:52:09.000Z","dependencies_parsed_at":"2023-02-25T11:16:16.774Z","dependency_job_id":null,"html_url":"https://github.com/iann0036/CloudFormationMultiCloud","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/iann0036/CloudFormationMultiCloud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iann0036%2FCloudFormationMultiCloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iann0036%2FCloudFormationMultiCloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iann0036%2FCloudFormationMultiCloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iann0036%2FCloudFormationMultiCloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iann0036","download_url":"https://codeload.github.com/iann0036/CloudFormationMultiCloud/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iann0036%2FCloudFormationMultiCloud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30283425,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["aws","azure","cloudformation","cloudformation-custom-resource","google-cloud-platform"],"created_at":"2024-10-03T19:40:00.624Z","updated_at":"2026-03-09T04:33:04.764Z","avatar_url":"https://github.com/iann0036.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CloudFormation Multi-Cloud\n\n\u003e An experiment to add Azure and Google Cloud resource support to CloudFormation.\n\n![Screenshot](assets/screen1.png)\n\n:exclamation: **CAUTION:** This project is currently in alpha stages. Some components may not work as expected and fields may not be validated. Currently, all fields within the example stacks are required.\n\n\n## Installation\n\n\u003ca href=\"https://console.aws.amazon.com/cloudformation/home?#/stacks/new?\u0026templateURL=https://s3.amazonaws.com/ianmckay-ap-southeast-2/multicloud/custom_resource.yaml\" target=\"_blank\"\u003e\u003cimg src=\"https://s3.amazonaws.com/cloudformation-examples/cloudformation-launch-stack.png\"\u003e\u003c/a\u003e\n\nClick the above link to deploy the stack which is required to deploy the Transform and Custom Resource handler. You will be asked to input your Azure app credentials and Google JSON server credentials.\n\nIf you prefer, you can also manually upsert the [custom_resource.yaml](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/custom_resource.yaml) stack from source and compile your own copy of the Lambda source. Please note that if you do this, the Python requirements must be vendored from within an Amazon Linux machine.\n\n\n## Usage\n\nOnce the handler stack is created, you may use the below resources by adding the `MultiCloud` transform to your stack. This will transform your input template to convert the Azure/Google Cloud resources into Custom Resources that will handle the lifecycle within that cloud provider.\n\nThe following resources are supported (click the link to see examples):\n\nFunctionality | AWS Resource | Azure Resource | Google Cloud Resource\n------------- | ------------ | -------------- | ---------------------\nLogical Group | - | [Azure::Resource::ResourceGroup](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/examples/azure_bucket.yaml#L10-L14) | -\nVirtual Network | AWS::EC2::VPC | [Azure::Network::VirtualNetwork](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/examples/azure_example.yaml#L16-L24) | [GoogleCloud::Compute::Network](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/examples/googlecloud_example.yaml#L10-L19)\nSubnet | AWS::EC2::Subnet | [Azure::Network::Subnet](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/examples/azure_example.yaml#L26-L32) | [GoogleCloud::Compute::Subnetwork](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/examples/googlecloud_example.yaml#L21-L31)\nNetwork Interface | AWS::EC2::NetworkInterface | [Azure::Network::NetworkInterface](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/examples/azure_example.yaml#L34-L43) | -\nVirtual Machine | AWS::EC2::Instance | [Azure::Compute::VirtualMachine](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/examples/azure_example.yaml#L45-L65) | [GoogleCloud::Compute::Instance](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/examples/googlecloud_example.yaml#L33-L59)\nQueue | AWS::SQS:Queue | [Azure::Storage::Queue](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/examples/azure_queue.yaml#L26-L31) | [GoogleCloud::PubSub::Topic](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/examples/googlecloud_queue.yaml#L10-L14)\nObject Bucket | AWS::S3::Bucket | [Azure::Storage::StorageAccount](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/examples/azure_bucket.yaml#L16-L24) | [GoogleCloud::Storage::Bucket](https://github.com/iann0036/CloudFormationMultiCloud/blob/master/examples/googlecloud_bucket.yaml#L10-L18)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiann0036%2Fcloudformationmulticloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiann0036%2Fcloudformationmulticloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiann0036%2Fcloudformationmulticloud/lists"}