{"id":30106771,"url":"https://github.com/glav/aihub-secure-storage","last_synced_at":"2026-02-08T07:03:16.881Z","repository":{"id":298843463,"uuid":"1001277815","full_name":"glav/aihub-secure-storage","owner":"glav","description":"Templated deployment for Azure AI Hub with secure storage account - no public access","archived":false,"fork":false,"pushed_at":"2025-06-24T03:18:51.000Z","size":54,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-24T04:26:28.747Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Bicep","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/glav.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2025-06-13T05:46:43.000Z","updated_at":"2025-06-24T03:18:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"25fb3daa-395d-4ea1-8535-724cb1878262","html_url":"https://github.com/glav/aihub-secure-storage","commit_stats":null,"previous_names":["glav/aihub-secure-storage"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/glav/aihub-secure-storage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glav%2Faihub-secure-storage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glav%2Faihub-secure-storage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glav%2Faihub-secure-storage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glav%2Faihub-secure-storage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/glav","download_url":"https://codeload.github.com/glav/aihub-secure-storage/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glav%2Faihub-secure-storage/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269660456,"owners_count":24455292,"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","status":"online","status_checked_at":"2025-08-09T02:00:10.424Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-08-10T01:09:49.724Z","updated_at":"2026-02-08T07:03:16.787Z","avatar_url":"https://github.com/glav.png","language":"Bicep","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Azure AI Hub with Secure Storage\n\nThis project deploys an Azure AI Hub with secure storage infrastructure using Azure Bicep templates and shell scripts.\n\n## Prerequisites\n\n- Azure CLI installed and configured\n- Appropriate Azure subscription permissions to create resource groups and deploy resources\n- Bash shell environment (available in the dev container)\n\n## Deployment\n\n### Deploy Infrastructure\n\nUse the `deploy.sh` script to create and deploy all necessary Azure resources:\n\n```bash\ncd infra\n./deploy.sh \u003clocation\u003e \u003cresource-group\u003e\n```\n\n**Parameters:**\n- `\u003clocation\u003e` - Azure region where resources will be deployed (e.g., `eastus`, `westus2`)\n- `\u003cresource-group\u003e` - Name of the Azure resource group to create\n\n**Example:**\n```bash\n./deploy.sh eastus my-aihub-rg\n```\n\n**What the deploy script does:**\n1. Creates a new Azure resource group with a 7-day expiration tag\n2. Deploys the main Bicep template (`main.bicep`) which provisions:\n   - Azure ML workspace\n   - Storage account with secure configuration\n   - Key Vault\n   - Other supporting resources\n3. Provisions the managed network for the ML workspace\n4. Configures datastore authentication using the `configure_datastore_auth.sh` script\n\n### Post-Deployment Configuration\n\nThe deployment automatically runs `configure_datastore_auth.sh` to set up proper permissions for accessing the storage account. This script:\n- Assigns the current user the \"Storage Blob Data Reader\" role on the storage account\n- Configures authentication for Azure ML datastore access\n\n## Cleanup\n\n### Remove All Resources\n\nUse the `cleanup.sh` script to completely remove all deployed resources:\n\n```bash\ncd infra\n./cleanup.sh \u003clocation\u003e \u003cresource-group\u003e\n```\n\n**Parameters:**\n- `\u003clocation\u003e` - Azure region where resources were deployed\n- `\u003cresource-group\u003e` - Name of the Azure resource group to delete\n\n**Example:**\n```bash\n./cleanup.sh eastus my-aihub-rg\n```\n\n**What the cleanup script does:**\n1. Finds and deletes the Key Vault in the specified resource group\n2. Purges the Key Vault (permanently removes it)\n3. Deletes the entire resource group and all contained resources\n\n**⚠️ Warning:** The cleanup script permanently deletes all resources in the specified resource group. This action cannot be undone.\n\n## Additional Scripts\n\n- **`configure_datastore_auth.sh`** - Configures user permissions for Azure ML datastore access (automatically called by deploy.sh)\n- **`comprehensive_troubleshooting.sh`** - Troubleshooting utilities for deployment issues\n- **`storage_network_update.bicep`** - Bicep template for updating storage network configurations\n- **`workspace_permissions.bicep`** - Bicep template for workspace permission configurations\n\n## Project Structure\n\n```\ninfra/\n├── deploy.sh                      # Main deployment script\n├── cleanup.sh                     # Resource cleanup script\n├── configure_datastore_auth.sh    # Permission configuration script\n├── main.bicep                     # Main Bicep deployment template\n├── hub.bicep                      # AI Hub specific resources\n├── storage_account.bicep          # Storage account configuration\n└── ...                           # Additional Bicep templates\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglav%2Faihub-secure-storage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglav%2Faihub-secure-storage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglav%2Faihub-secure-storage/lists"}