├── AWS ├── .aws │ ├── configure │ └── credentials ├── README.md ├── S3 │ └── README.md └── SSO │ └── .aws │ └── configure ├── Azure ├── AI & ML │ └── README.md ├── AZ-104 │ └── README.md ├── AZ-500 │ ├── README.md │ ├── md1 │ │ ├── s1 │ │ │ ├── configure_authentication_methods.md │ │ │ ├── configure_password_writeback.md │ │ │ ├── configure_security_for_service_principals.md │ │ │ ├── manage_azure_ad_directory_groups.md │ │ │ ├── manage_azure_ad_users.md │ │ │ └── transfer_azure_subscriptions_between_azure_ad_tenants.md │ │ ├── s2 │ │ │ ├── activate_and_configure_pim.md │ │ │ ├── configure_access_reviews.md │ │ │ ├── configure_azure_ad_identity_protection.md │ │ │ ├── implement_conditional_access_policies.md │ │ │ └── monitor_privileged_access_for_azure_ad_pim.md │ │ ├── s3 │ │ │ ├── configure_app_registration_permission_scopes.md │ │ │ ├── create_app_registration.md │ │ │ ├── manage_api_access_to_azure_subscriptions_and_resources.md │ │ │ └── manage_app_registration_permission_consent.md │ │ └── s4 │ │ │ ├── apply_principle_of_least_privilege.md │ │ │ ├── check_access.md │ │ │ ├── configure_custom_rbac_roles.md │ │ │ ├── configure_resource_group_permissions.md │ │ │ ├── configure_subscription_and_resource_permissions.md │ │ │ ├── identify_the_appropriate_role.md │ │ │ └── interpret_permissions.md │ ├── md2 │ │ ├── s1 │ │ │ ├── azure_firewall.md │ │ │ ├── azure_firewall_manager.md │ │ │ ├── configure_a_firewall_on_common_services.md │ │ │ ├── configure_azure_application_gateway.md │ │ │ ├── configure_azure_bastion.md │ │ │ ├── configure_azure_front_door.md │ │ │ ├── implement_ddos_protection.md │ │ │ ├── implement_service_endpoints.md │ │ │ ├── network_security_groups_and_application_security_groups.md │ │ │ └── vpn_gateway_and_express_route.md │ │ └── s2 │ │ │ ├── configure_and_monitor_system_updates_for_vms.md │ │ │ ├── configure_authentication_and_security_for_azure_app_service.md │ │ │ ├── configure_authentication_for_azure_container_registry.md │ │ │ ├── configure_authentication_for_azure_kubernetes_service.md │ │ │ ├── configure_automatic_updates.md │ │ │ ├── configure_endpoint_protection.md │ │ │ ├── configure_isolation_for_aks.md │ │ │ ├── configure_security_for_container_registry.md │ │ │ ├── configure_security_for_different_types_of_containers.md │ │ │ ├── configure_ssl_tls_certs.md │ │ │ ├── implement_azure_disk_encryption.md │ │ │ └── implement_vulnerability_management.md │ ├── md3 │ │ ├── s1 │ │ │ ├── configure_diagnostic_logging_and_log_retention.md │ │ │ ├── create_and_customize_alerts.md │ │ │ └── monitor_security_logs_by_using_azure_monitor.md │ │ ├── s2 │ │ │ ├── configure_centralized_policy_management.md │ │ │ ├── configure_compliance_policies_and_evaluate_for_compliance.md │ │ │ ├── configure_just_in_time_vm_access.md │ │ │ └── evaluate_vulnerability_scans.md │ │ ├── s3 │ │ │ ├── configure_data_sources_to_azure_sentinel.md │ │ │ ├── configure_workflow_automation.md │ │ │ ├── create_and_customize_alerts.md │ │ │ └── evaluate_results_from_azure_sentinel.md │ │ └── s4 │ │ │ ├── configure_a_playbook_by_using_azure_sentinel.md │ │ │ ├── configure_security_settings_by_using_azure_blueprint.md │ │ │ └── configure_security_settings_by_using_azure_policy.md │ └── md4 │ │ ├── s1 │ │ ├── configure_access_control_for_storage_accounts.md │ │ ├── configure_azure_ad_authentication_for_azure_storage.md │ │ ├── configure_azure_ad_domain_services_authentication_for_azure_files.md │ │ ├── configure_azure_defender_for_storage.md │ │ ├── configure_key_management_for_storage_accounts.md │ │ ├── configure_storage_service_encryption.md │ │ ├── create_a_shared_access_policy_for_a_blob_or_blob_container.md │ │ └── create_and_manage_shared_access_signatures_(sas).md │ │ ├── s2 │ │ ├── configure_azure_defender_for_sql.md │ │ ├── configure_azure_sql_database_advanced_threat_protection.md │ │ ├── enable_database_auditing.md │ │ ├── enable_database_authentication.md │ │ ├── implement_azure_sql_database_always_encrypted.md │ │ └── implement_database_encryption.md │ │ └── s3 │ │ ├── backup_and_restore_of_key_vault_items.md │ │ ├── configure_azure_defender_for_key_vault.md │ │ ├── configure_key_rotation.md │ │ ├── configure_rbac_usage_in_azure_key_vault.md │ │ ├── manage_access_to_key_vault.md │ │ ├── manage_certificates.md │ │ ├── manage_permissions_to_secrets,_certificates,_and_keys.md │ │ └── manage_secrets.md ├── Bicep │ ├── Practical Multiple Resource Groups │ │ ├── base-services-rg │ │ │ ├── main.bicep │ │ │ ├── main.json │ │ │ ├── modules │ │ │ │ ├── app-configurations │ │ │ │ │ └── myAppConfiguration.bicep │ │ │ │ ├── app-service-plans │ │ │ │ │ └── myAppServicePlan.bicep │ │ │ │ ├── app-services │ │ │ │ │ ├── adminPublicWebApp.bicep │ │ │ │ │ ├── adminSiteWebApp.bicep │ │ │ │ │ ├── customerPublicWebApp.bicep │ │ │ │ │ ├── customerSiteWebApp.bicep │ │ │ │ │ ├── musicApiWebApp.bicep │ │ │ │ │ └── videoApiWebApp.bicep │ │ │ │ ├── application-insights │ │ │ │ │ ├── adminAppInsights.bicep │ │ │ │ │ ├── applicationInsights.bicep │ │ │ │ │ ├── customerAppInsights.bicep │ │ │ │ │ ├── musicAppInsights.bicep │ │ │ │ │ └── videoAppInsights.bicep │ │ │ │ ├── azure-functions │ │ │ │ │ ├── adminFunctionApp.bicep │ │ │ │ │ ├── customerFunctionApp.bicep │ │ │ │ │ ├── musicFunctionApp.bicep │ │ │ │ │ └── videoFunctionApp.bicep │ │ │ │ ├── cosmos-accounts │ │ │ │ │ └── myCosmosAccount.bicep │ │ │ │ ├── cosmos-databases │ │ │ │ │ ├── adminDb.bicep │ │ │ │ │ ├── customerDb.bicep │ │ │ │ │ ├── musicDb.bicep │ │ │ │ │ └── videoDb.bicep │ │ │ │ ├── key-vaults │ │ │ │ │ └── keyVault.bicep │ │ │ │ ├── log-analytics-workspaces │ │ │ │ │ └── logAnalyticsWorkspace.bicep │ │ │ │ ├── private-dns-zones │ │ │ │ │ └── privateDNSZones.bicep │ │ │ │ ├── role-assignments │ │ │ │ │ ├── appConfigRoleAssignments.bicep │ │ │ │ │ ├── appInsightsRoleAssignments.bicep │ │ │ │ │ ├── keyVaultRoleAssignments.bicep │ │ │ │ │ └── storageRoleAssignments.bicep │ │ │ │ ├── service-bus-namespaces │ │ │ │ │ └── myServiceBusNamespace.bicep │ │ │ │ ├── sql-server-databases │ │ │ │ │ ├── adminDb.bicep │ │ │ │ │ ├── customerDb.bicep │ │ │ │ │ ├── musicDb.bicep │ │ │ │ │ └── videoDb.bicep │ │ │ │ ├── sql-servers │ │ │ │ │ └── mySqlServer.bicep │ │ │ │ ├── storage-accounts │ │ │ │ │ ├── functionAppsStorageAccount.bicep │ │ │ │ │ └── myStorageAccount.bicep │ │ │ │ ├── virtual-machines │ │ │ │ │ └── testVM.bicep │ │ │ │ └── virtual-networks │ │ │ │ │ └── virtualNetwork.bicep │ │ │ └── parameters │ │ │ │ ├── dev.parameters.json │ │ │ │ ├── prod.parameters.json │ │ │ │ ├── test.parameters.json │ │ │ │ └── uat.parameters.json │ │ ├── networking-layer-rg │ │ │ ├── main.bicep │ │ │ ├── main.json │ │ │ ├── modules │ │ │ │ ├── api-managements │ │ │ │ │ └── my-api-management │ │ │ │ │ │ ├── music-api │ │ │ │ │ │ ├── musicApi.bicep │ │ │ │ │ │ ├── musicApiBackend.bicep │ │ │ │ │ │ ├── musicApiDefinition.bicep │ │ │ │ │ │ ├── musicApiOperations.bicep │ │ │ │ │ │ └── musicApiPolicies.bicep │ │ │ │ │ │ ├── myApiManagement.bicep │ │ │ │ │ │ └── video-api │ │ │ │ │ │ ├── videoApi.bicep │ │ │ │ │ │ ├── videoApiBackend.bicep │ │ │ │ │ │ ├── videoApiDefinition.bicep │ │ │ │ │ │ ├── videoApiOperations.bicep │ │ │ │ │ │ └── videoApiPolicies.bicep │ │ │ │ ├── application-gateways │ │ │ │ │ └── my-gateway │ │ │ │ │ │ ├── applicationGateway.bicep │ │ │ │ │ │ ├── backend-pools │ │ │ │ │ │ ├── adminPublicPool.bicep │ │ │ │ │ │ ├── adminSitePool.bicep │ │ │ │ │ │ ├── backendPools.bicep │ │ │ │ │ │ ├── customerPublicPool.bicep │ │ │ │ │ │ └── customerSitePool.bicep │ │ │ │ │ │ ├── httpSettings.bicep │ │ │ │ │ │ ├── listeners │ │ │ │ │ │ ├── adminPublicListener.bicep │ │ │ │ │ │ ├── adminSiteListener.bicep │ │ │ │ │ │ ├── customerPublicListener.bicep │ │ │ │ │ │ ├── customerSiteListener.bicep │ │ │ │ │ │ └── listeners.bicep │ │ │ │ │ │ └── routing-rules │ │ │ │ │ │ ├── adminPublicRule.bicep │ │ │ │ │ │ ├── adminSiteRule.bicep │ │ │ │ │ │ ├── customerPublicRule.bicep │ │ │ │ │ │ ├── customerSiteRule.bicep │ │ │ │ │ │ └── routingRules.bicep │ │ │ │ ├── network-security-groups │ │ │ │ │ └── apiManagementNSG.bicep │ │ │ │ ├── private-dns-zones │ │ │ │ │ ├── appConfigurationPrivateDNSZone.bicep │ │ │ │ │ ├── appServicePrivateDNSZone.bicep │ │ │ │ │ ├── blobStoragePrivateDNSZone.bicep │ │ │ │ │ ├── cosmosPrivateDNSZone.bicep │ │ │ │ │ ├── customPrivateDNSZone.bicep │ │ │ │ │ ├── fileStoragePrivateDNSZone.bicep │ │ │ │ │ ├── keyVaultPrivateDNSZone.bicep │ │ │ │ │ ├── privateDNSZones.bicep │ │ │ │ │ ├── queueStoragePrivateDNSZone.bicep │ │ │ │ │ ├── serviceBusPrivateDNSZone.bicep │ │ │ │ │ └── tableStoragePrivateDNSZone.bicep │ │ │ │ └── virtual-networks │ │ │ │ │ └── virtualNetwork.bicep │ │ │ └── parameters │ │ │ │ ├── dev.parameters.json │ │ │ │ ├── prod.parameters.json │ │ │ │ ├── test.parameters.json │ │ │ │ └── uat.parameters.json │ │ └── product-service-rg │ │ │ ├── main.bicep │ │ │ ├── main.json │ │ │ ├── modules │ │ │ ├── api-managements │ │ │ │ └── my-existing-api-management │ │ │ │ │ ├── myExistingApiManagement.bicep │ │ │ │ │ └── product-api │ │ │ │ │ ├── productApi.bicep │ │ │ │ │ ├── productApiBackend.bicep │ │ │ │ │ ├── productApiDefinition.bicep │ │ │ │ │ ├── productApiOperations.bicep │ │ │ │ │ └── productApiPolicies.bicep │ │ │ ├── app-service-plans │ │ │ │ └── productAppServicePlan.bicep │ │ │ ├── app-services │ │ │ │ └── productApiWebApp.bicep │ │ │ ├── azure-functions │ │ │ │ └── productFunctionApp.bicep │ │ │ ├── cosmos-accounts │ │ │ │ └── productCosmosAccount.bicep │ │ │ ├── cosmos-databases │ │ │ │ └── productDb.bicep │ │ │ ├── key-vaults │ │ │ │ └── productKeyVault.bicep │ │ │ ├── sql-server-databases │ │ │ │ └── productDb.bicep │ │ │ ├── sql-servers │ │ │ │ └── productSqlServer.bicep │ │ │ └── storage-accounts │ │ │ │ └── productFunctionsStorageAccount.bicep │ │ │ └── parameters │ │ │ ├── dev.parameters.json │ │ │ ├── prod.parameters.json │ │ │ ├── test.parameters.json │ │ │ └── uat.parameters.json │ ├── Practical Private Endpoints │ │ ├── README.md │ │ ├── azure-pipelines.infra.yml │ │ ├── azure.txt │ │ ├── base-services │ │ │ ├── main.bicep │ │ │ ├── main.json │ │ │ ├── modules │ │ │ │ ├── api-managements │ │ │ │ │ └── my-api-management │ │ │ │ │ │ ├── music-api │ │ │ │ │ │ ├── musicApi.bicep │ │ │ │ │ │ ├── musicApiBackend.bicep │ │ │ │ │ │ ├── musicApiDefinition.bicep │ │ │ │ │ │ ├── musicApiOperations.bicep │ │ │ │ │ │ └── musicApiPolicies.bicep │ │ │ │ │ │ ├── myApiManagement.bicep │ │ │ │ │ │ └── video-api │ │ │ │ │ │ ├── videoApi.bicep │ │ │ │ │ │ ├── videoApiBackend.bicep │ │ │ │ │ │ ├── videoApiDefinition.bicep │ │ │ │ │ │ ├── videoApiOperations.bicep │ │ │ │ │ │ └── videoApiPolicies.bicep │ │ │ │ ├── app-configurations │ │ │ │ │ └── myAppConfiguration.bicep │ │ │ │ ├── app-service-plans │ │ │ │ │ └── myAppServicePlan.bicep │ │ │ │ ├── app-services │ │ │ │ │ ├── adminPublicWebApp.bicep │ │ │ │ │ ├── adminSiteWebApp.bicep │ │ │ │ │ ├── customerPublicWebApp.bicep │ │ │ │ │ ├── customerSiteWebApp.bicep │ │ │ │ │ ├── musicApiWebApp.bicep │ │ │ │ │ └── videoApiWebApp.bicep │ │ │ │ ├── application-gateways │ │ │ │ │ └── my-gateway │ │ │ │ │ │ ├── applicationGateway.bicep │ │ │ │ │ │ ├── backend-pools │ │ │ │ │ │ ├── adminPublicPool.bicep │ │ │ │ │ │ ├── adminSitePool.bicep │ │ │ │ │ │ ├── backendPools.bicep │ │ │ │ │ │ ├── customerPublicPool.bicep │ │ │ │ │ │ └── customerSitePool.bicep │ │ │ │ │ │ ├── httpSettings.bicep │ │ │ │ │ │ ├── listeners │ │ │ │ │ │ ├── adminPublicListener.bicep │ │ │ │ │ │ ├── adminSiteListener.bicep │ │ │ │ │ │ ├── customerPublicListener.bicep │ │ │ │ │ │ ├── customerSiteListener.bicep │ │ │ │ │ │ └── listeners.bicep │ │ │ │ │ │ └── routing-rules │ │ │ │ │ │ ├── adminPublicRule.bicep │ │ │ │ │ │ ├── adminSiteRule.bicep │ │ │ │ │ │ ├── customerPublicRule.bicep │ │ │ │ │ │ ├── customerSiteRule.bicep │ │ │ │ │ │ └── routingRules.bicep │ │ │ │ ├── application-insights │ │ │ │ │ ├── adminAppInsights.bicep │ │ │ │ │ ├── applicationInsights.bicep │ │ │ │ │ ├── customerAppInsights.bicep │ │ │ │ │ ├── musicAppInsights.bicep │ │ │ │ │ └── videoAppInsights.bicep │ │ │ │ ├── azure-functions │ │ │ │ │ ├── adminFunctionApp.bicep │ │ │ │ │ ├── customerFunctionApp.bicep │ │ │ │ │ ├── musicFunctionApp.bicep │ │ │ │ │ └── videoFunctionApp.bicep │ │ │ │ ├── cosmos-accounts │ │ │ │ │ └── myCosmosAccount.bicep │ │ │ │ ├── cosmos-databases │ │ │ │ │ ├── adminDb.bicep │ │ │ │ │ ├── customerDb.bicep │ │ │ │ │ ├── musicDb.bicep │ │ │ │ │ └── videoDb.bicep │ │ │ │ ├── key-vaults │ │ │ │ │ └── keyVault.bicep │ │ │ │ ├── log-analytics-workspaces │ │ │ │ │ └── logAnalyticsWorkspace.bicep │ │ │ │ ├── network-security-groups │ │ │ │ │ └── apiManagementNSG.bicep │ │ │ │ ├── private-dns-zones │ │ │ │ │ ├── appConfigurationPrivateDNSZone.bicep │ │ │ │ │ ├── appServicePrivateDNSZone.bicep │ │ │ │ │ ├── blobStoragePrivateDNSZone.bicep │ │ │ │ │ ├── cosmosPrivateDNSZone.bicep │ │ │ │ │ ├── customPrivateDNSZone.bicep │ │ │ │ │ ├── fileStoragePrivateDNSZone.bicep │ │ │ │ │ ├── keyVaultPrivateDNSZone.bicep │ │ │ │ │ ├── privateDNSZones.bicep │ │ │ │ │ ├── queueStoragePrivateDNSZone.bicep │ │ │ │ │ ├── serviceBusPrivateDNSZone.bicep │ │ │ │ │ └── tableStoragePrivateDNSZone.bicep │ │ │ │ ├── role-assignments │ │ │ │ │ ├── appConfigRoleAssignments.bicep │ │ │ │ │ ├── appInsightsRoleAssignments.bicep │ │ │ │ │ ├── keyVaultRoleAssignments.bicep │ │ │ │ │ └── storageRoleAssignments.bicep │ │ │ │ ├── service-bus-namespaces │ │ │ │ │ └── myServiceBusNamespace.bicep │ │ │ │ ├── sql-server-databases │ │ │ │ │ ├── adminDb.bicep │ │ │ │ │ ├── customerDb.bicep │ │ │ │ │ ├── musicDb.bicep │ │ │ │ │ └── videoDb.bicep │ │ │ │ ├── sql-servers │ │ │ │ │ └── mySqlServer.bicep │ │ │ │ ├── storage-accounts │ │ │ │ │ ├── functionAppsStorageAccount.bicep │ │ │ │ │ └── myStorageAccount.bicep │ │ │ │ ├── virtual-machines │ │ │ │ │ └── testVM.bicep │ │ │ │ └── virtual-networks │ │ │ │ │ └── virtualNetwork.bicep │ │ │ └── parameters │ │ │ │ ├── dev.parameters.json │ │ │ │ ├── prod.parameters.json │ │ │ │ ├── test.parameters.json │ │ │ │ └── uat.parameters.json │ │ └── product-service │ │ │ ├── main.bicep │ │ │ ├── main.json │ │ │ ├── modules │ │ │ ├── api-managements │ │ │ │ └── my-existing-api-management │ │ │ │ │ ├── myExistingApiManagement.bicep │ │ │ │ │ └── product-api │ │ │ │ │ ├── productApi.bicep │ │ │ │ │ ├── productApiBackend.bicep │ │ │ │ │ ├── productApiDefinition.bicep │ │ │ │ │ ├── productApiOperations.bicep │ │ │ │ │ └── productApiPolicies.bicep │ │ │ ├── app-service-plans │ │ │ │ └── productAppServicePlan.bicep │ │ │ ├── app-services │ │ │ │ └── productApiWebApp.bicep │ │ │ ├── azure-functions │ │ │ │ └── productFunctionApp.bicep │ │ │ ├── cosmos-accounts │ │ │ │ └── productCosmosAccount.bicep │ │ │ ├── cosmos-databases │ │ │ │ └── productDb.bicep │ │ │ ├── key-vaults │ │ │ │ └── productKeyVault.bicep │ │ │ ├── sql-server-databases │ │ │ │ └── productDb.bicep │ │ │ ├── sql-servers │ │ │ │ └── productSqlServer.bicep │ │ │ └── storage-accounts │ │ │ │ └── productFunctionsStorageAccount.bicep │ │ │ └── parameters │ │ │ ├── dev.parameters.json │ │ │ ├── prod.parameters.json │ │ │ ├── test.parameters.json │ │ │ └── uat.parameters.json │ ├── README.md │ ├── network-diagram.drawio │ └── network-diagram.drawio.png ├── Compute │ └── README.md ├── Container │ └── README.md ├── Cost Management │ └── README.md ├── Data Warehouse │ └── README.md ├── Database │ └── README.md ├── DevOps │ └── README.md ├── Functions │ └── README.md ├── Identity │ └── README.md ├── Integration │ └── README.md ├── IoT │ └── README.md ├── Monitoring │ └── README.md ├── Networking │ └── README.md ├── README.md ├── Security │ └── README.md └── Storage │ └── README.md ├── Dapr └── README.md ├── Docker └── README.md ├── Elastic (ELK) Stack └── README.md ├── Git └── README.md ├── Google Cloud └── README.md ├── Infrastructure as Code ├── Ansible │ ├── README.md │ ├── create-ad.yml │ └── join-ad.yml ├── README.md └── Terraform │ ├── README.md │ ├── aws sample 1 │ ├── README.md │ ├── instances.tf │ ├── loadbalancer.tf │ ├── locals.tf │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars │ └── variables.tf │ ├── aws sample 2 │ ├── README.md │ ├── instances.tf │ ├── loadbalancer.tf │ ├── locals.tf │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ ├── s3.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── website │ │ ├── Globo_logo_Vert.png │ │ └── index.html │ ├── aws sample 3 │ ├── README.md │ ├── instances.tf │ ├── loadbalancer.tf │ ├── locals.tf │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ ├── s3.tf │ ├── templates │ │ └── startup_script.tpl │ ├── terraform.tfvars │ ├── variables.tf │ └── website │ │ ├── Globo_logo_Vert.png │ │ └── index.html │ ├── instances.tf │ ├── loadbalancer.tf │ ├── locals.tf │ ├── main.tf │ ├── modules │ └── globo-web-app-s3 │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── outputs.tf │ ├── providers.tf │ ├── s3.tf │ ├── templates │ └── startup_script.tpl │ ├── terraform.tfvars │ ├── variables.tf │ └── website │ ├── Globo_logo_Vert.png │ └── index.html ├── Jenkins └── README.md ├── Kafka └── README.md ├── Kubernetes ├── README.md ├── configMaps │ ├── README.md │ ├── app.configmap.yml │ ├── app.secret.yml │ └── nginx.deployment.yml ├── deployments │ ├── README.md │ └── nginx.deployment.yml ├── helm │ └── README.md ├── imgs │ ├── master.png │ ├── node.png │ └── pod.png ├── kubernetes.drawio ├── pods │ ├── README.md │ └── nginx.pod.yml └── services │ ├── README.md │ ├── clusterip.service.yml │ ├── externalname.service.yml │ ├── loadbalancer.service.yml │ └── nodeport.service.yml ├── Networking ├── README.md └── imgs │ ├── osi-model.png │ └── tcp-ip-model.jpg ├── Octopus Deploy ├── Deployment.md ├── InstallOctopusServer.md ├── InstallTentacle.md ├── README.md └── imgs │ ├── Deployment_01.png │ ├── Deployment_02.png │ ├── Deployment_03.png │ ├── Deployment_04.png │ ├── Deployment_05.png │ ├── Deployment_06.png │ ├── Sever_Installation_01.png │ ├── Sever_Installation_02.png │ ├── Sever_Installation_03.png │ ├── Sever_Installation_04.png │ ├── Sever_Installation_05.png │ ├── Sever_Installation_06.png │ ├── Sever_Installation_07.png │ ├── Sever_Installation_08.png │ ├── Sever_Installation_09.png │ ├── Sever_Installation_10.png │ ├── Sever_Installation_11.png │ ├── Sever_Installation_12.png │ ├── Sever_Installation_13.png │ ├── Sever_Installation_14.png │ ├── Sever_Installation_15.png │ ├── Sever_Installation_16.png │ ├── Tentacle_Installation_01.png │ ├── Tentacle_Installation_02.png │ ├── Tentacle_Installation_03.png │ ├── Tentacle_Installation_04.png │ ├── Tentacle_Installation_05.png │ ├── Tentacle_Installation_06.png │ ├── Tentacle_Installation_07.png │ ├── Tentacle_Installation_08.png │ ├── Tentacle_Installation_09.png │ ├── Tentacle_Installation_10.png │ ├── Tentacle_Installation_11.png │ └── Tentacle_Installation_12.png ├── Operating Systems ├── Linux │ └── README.md ├── WSL │ └── README.md └── Windows │ └── README.md ├── PowerShell └── README.md ├── Prometheus & Grafana └── README.md ├── Proxies ├── HAProxy │ └── README.md ├── README.md └── nginx │ └── README.md ├── README.md ├── Secrets Management └── README.md ├── Security ├── Ethical Hacking │ ├── Cloud Computing.md │ ├── Cryptography.md │ ├── Denial of Service.md │ ├── Enumeration.md │ ├── Evading IDS, Firewalls, and Honeypots.md │ ├── Hacking Web Applications.md │ ├── Hacking Web Servers.md │ ├── Malware Threats.md │ ├── Penetration Testing.md │ ├── README.md │ ├── Reconnaissance & Footprinting.md │ ├── Scanning Networks.md │ ├── Sniffing.md │ ├── System Hacking.md │ ├── Understanding Ethical Hacking.md │ └── Vulnerability Analysis.md ├── OWASP │ └── README.md └── README.md ├── Service Mesh └── README.md ├── SonarQube ├── README.md └── imgs │ ├── configure-mssqlserver.png │ ├── configure-mssqlserver2.png │ ├── configure-sonar-scanner-msbuild.png │ ├── configure-sonarqube.png │ ├── copy-jdbc.png │ ├── copy-jdbc2.png │ ├── download-jdbc.png │ ├── download-openjdk.png │ ├── download-sonar-scanner-msbuild.png │ ├── download-sonar-scanner-msbuild1.png │ ├── download-sonarqube.png │ ├── install-sonarqube.png │ └── install-sonarqube2.png ├── TeamCity ├── BuildConfiguration.NetCore.md ├── BuildConfigurationAngular.md ├── InstallTeamCity.md ├── README.md └── imgs │ ├── Angular_01.png │ ├── Angular_02.png │ ├── Angular_03.png │ ├── Angular_04.png │ ├── Angular_05.png │ ├── Angular_06.png │ ├── Angular_07.png │ ├── Angular_08.png │ ├── Angular_09.png │ ├── Angular_10.png │ ├── Angular_11.png │ ├── Install_01.png │ ├── Install_02.png │ ├── Install_03.png │ ├── Install_04.png │ ├── Install_05.png │ ├── Install_06.png │ ├── Install_07.png │ ├── Install_08.png │ ├── Install_09.png │ ├── Install_10.png │ ├── Install_11.png │ ├── Install_12.png │ ├── Install_6.png │ ├── Install_8.png │ ├── NetCore_01.png │ ├── NetCore_02.png │ ├── NetCore_03.png │ ├── NetCore_04.png │ ├── NetCore_05.png │ ├── NetCore_06.png │ ├── NetCore_07.png │ ├── NetCore_08.png │ ├── NetCore_09.png │ ├── NetCore_10.png │ ├── NetCore_11.png │ ├── NetCore_12.png │ ├── NetCore_13.png │ ├── NetCore_14.png │ ├── NetCore_15.png │ ├── NetCore_16.png │ ├── NetCore_17.png │ └── powershell.txt ├── Visual Studio Code └── README.md ├── Web Servers ├── IIS │ └── README.md ├── README.md └── nginx │ └── README.md └── Windows Failover Clustering └── README.md /AWS/.aws/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/AWS/.aws/configure -------------------------------------------------------------------------------- /AWS/.aws/credentials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/AWS/.aws/credentials -------------------------------------------------------------------------------- /AWS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/AWS/README.md -------------------------------------------------------------------------------- /AWS/S3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/AWS/S3/README.md -------------------------------------------------------------------------------- /AWS/SSO/.aws/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/AWS/SSO/.aws/configure -------------------------------------------------------------------------------- /Azure/AI & ML/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Azure/AZ-104/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-104/README.md -------------------------------------------------------------------------------- /Azure/AZ-500/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/README.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s1/configure_authentication_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s1/configure_authentication_methods.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s1/configure_password_writeback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s1/configure_password_writeback.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s1/configure_security_for_service_principals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s1/configure_security_for_service_principals.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s1/manage_azure_ad_directory_groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s1/manage_azure_ad_directory_groups.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s1/manage_azure_ad_users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s1/manage_azure_ad_users.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s1/transfer_azure_subscriptions_between_azure_ad_tenants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s1/transfer_azure_subscriptions_between_azure_ad_tenants.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s2/activate_and_configure_pim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s2/activate_and_configure_pim.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s2/configure_access_reviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s2/configure_access_reviews.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s2/configure_azure_ad_identity_protection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s2/configure_azure_ad_identity_protection.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s2/implement_conditional_access_policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s2/implement_conditional_access_policies.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s2/monitor_privileged_access_for_azure_ad_pim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s2/monitor_privileged_access_for_azure_ad_pim.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s3/configure_app_registration_permission_scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s3/configure_app_registration_permission_scopes.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s3/create_app_registration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s3/create_app_registration.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s3/manage_api_access_to_azure_subscriptions_and_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s3/manage_api_access_to_azure_subscriptions_and_resources.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s3/manage_app_registration_permission_consent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s3/manage_app_registration_permission_consent.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s4/apply_principle_of_least_privilege.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s4/apply_principle_of_least_privilege.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s4/check_access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s4/check_access.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s4/configure_custom_rbac_roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s4/configure_custom_rbac_roles.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s4/configure_resource_group_permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s4/configure_resource_group_permissions.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s4/configure_subscription_and_resource_permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s4/configure_subscription_and_resource_permissions.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s4/identify_the_appropriate_role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s4/identify_the_appropriate_role.md -------------------------------------------------------------------------------- /Azure/AZ-500/md1/s4/interpret_permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md1/s4/interpret_permissions.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s1/azure_firewall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s1/azure_firewall.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s1/azure_firewall_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s1/azure_firewall_manager.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s1/configure_a_firewall_on_common_services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s1/configure_a_firewall_on_common_services.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s1/configure_azure_application_gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s1/configure_azure_application_gateway.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s1/configure_azure_bastion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s1/configure_azure_bastion.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s1/configure_azure_front_door.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s1/configure_azure_front_door.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s1/implement_ddos_protection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s1/implement_ddos_protection.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s1/implement_service_endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s1/implement_service_endpoints.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s1/network_security_groups_and_application_security_groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s1/network_security_groups_and_application_security_groups.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s1/vpn_gateway_and_express_route.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s1/vpn_gateway_and_express_route.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s2/configure_and_monitor_system_updates_for_vms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s2/configure_and_monitor_system_updates_for_vms.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s2/configure_authentication_and_security_for_azure_app_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s2/configure_authentication_and_security_for_azure_app_service.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s2/configure_authentication_for_azure_container_registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s2/configure_authentication_for_azure_container_registry.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s2/configure_authentication_for_azure_kubernetes_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s2/configure_authentication_for_azure_kubernetes_service.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s2/configure_automatic_updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s2/configure_automatic_updates.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s2/configure_endpoint_protection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s2/configure_endpoint_protection.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s2/configure_isolation_for_aks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s2/configure_isolation_for_aks.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s2/configure_security_for_container_registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s2/configure_security_for_container_registry.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s2/configure_security_for_different_types_of_containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s2/configure_security_for_different_types_of_containers.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s2/configure_ssl_tls_certs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s2/configure_ssl_tls_certs.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s2/implement_azure_disk_encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s2/implement_azure_disk_encryption.md -------------------------------------------------------------------------------- /Azure/AZ-500/md2/s2/implement_vulnerability_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md2/s2/implement_vulnerability_management.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s1/configure_diagnostic_logging_and_log_retention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s1/configure_diagnostic_logging_and_log_retention.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s1/create_and_customize_alerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s1/create_and_customize_alerts.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s1/monitor_security_logs_by_using_azure_monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s1/monitor_security_logs_by_using_azure_monitor.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s2/configure_centralized_policy_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s2/configure_centralized_policy_management.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s2/configure_compliance_policies_and_evaluate_for_compliance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s2/configure_compliance_policies_and_evaluate_for_compliance.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s2/configure_just_in_time_vm_access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s2/configure_just_in_time_vm_access.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s2/evaluate_vulnerability_scans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s2/evaluate_vulnerability_scans.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s3/configure_data_sources_to_azure_sentinel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s3/configure_data_sources_to_azure_sentinel.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s3/configure_workflow_automation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s3/configure_workflow_automation.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s3/create_and_customize_alerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s3/create_and_customize_alerts.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s3/evaluate_results_from_azure_sentinel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s3/evaluate_results_from_azure_sentinel.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s4/configure_a_playbook_by_using_azure_sentinel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s4/configure_a_playbook_by_using_azure_sentinel.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s4/configure_security_settings_by_using_azure_blueprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s4/configure_security_settings_by_using_azure_blueprint.md -------------------------------------------------------------------------------- /Azure/AZ-500/md3/s4/configure_security_settings_by_using_azure_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md3/s4/configure_security_settings_by_using_azure_policy.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s1/configure_access_control_for_storage_accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s1/configure_access_control_for_storage_accounts.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s1/configure_azure_ad_authentication_for_azure_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s1/configure_azure_ad_authentication_for_azure_storage.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s1/configure_azure_ad_domain_services_authentication_for_azure_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s1/configure_azure_ad_domain_services_authentication_for_azure_files.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s1/configure_azure_defender_for_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s1/configure_azure_defender_for_storage.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s1/configure_key_management_for_storage_accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s1/configure_key_management_for_storage_accounts.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s1/configure_storage_service_encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s1/configure_storage_service_encryption.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s1/create_a_shared_access_policy_for_a_blob_or_blob_container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s1/create_a_shared_access_policy_for_a_blob_or_blob_container.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s1/create_and_manage_shared_access_signatures_(sas).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s1/create_and_manage_shared_access_signatures_(sas).md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s2/configure_azure_defender_for_sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s2/configure_azure_defender_for_sql.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s2/configure_azure_sql_database_advanced_threat_protection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s2/configure_azure_sql_database_advanced_threat_protection.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s2/enable_database_auditing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s2/enable_database_auditing.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s2/enable_database_authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s2/enable_database_authentication.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s2/implement_azure_sql_database_always_encrypted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s2/implement_azure_sql_database_always_encrypted.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s2/implement_database_encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s2/implement_database_encryption.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s3/backup_and_restore_of_key_vault_items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s3/backup_and_restore_of_key_vault_items.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s3/configure_azure_defender_for_key_vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s3/configure_azure_defender_for_key_vault.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s3/configure_key_rotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s3/configure_key_rotation.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s3/configure_rbac_usage_in_azure_key_vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s3/configure_rbac_usage_in_azure_key_vault.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s3/manage_access_to_key_vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s3/manage_access_to_key_vault.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s3/manage_certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s3/manage_certificates.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s3/manage_permissions_to_secrets,_certificates,_and_keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s3/manage_permissions_to_secrets,_certificates,_and_keys.md -------------------------------------------------------------------------------- /Azure/AZ-500/md4/s3/manage_secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/AZ-500/md4/s3/manage_secrets.md -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/main.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/main.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-configurations/myAppConfiguration.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-configurations/myAppConfiguration.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-service-plans/myAppServicePlan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-service-plans/myAppServicePlan.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-services/adminPublicWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-services/adminPublicWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-services/adminSiteWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-services/adminSiteWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-services/customerPublicWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-services/customerPublicWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-services/customerSiteWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-services/customerSiteWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-services/musicApiWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-services/musicApiWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-services/videoApiWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/app-services/videoApiWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/application-insights/adminAppInsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/application-insights/adminAppInsights.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/application-insights/applicationInsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/application-insights/applicationInsights.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/application-insights/customerAppInsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/application-insights/customerAppInsights.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/application-insights/musicAppInsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/application-insights/musicAppInsights.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/application-insights/videoAppInsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/application-insights/videoAppInsights.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/azure-functions/adminFunctionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/azure-functions/adminFunctionApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/azure-functions/customerFunctionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/azure-functions/customerFunctionApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/azure-functions/musicFunctionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/azure-functions/musicFunctionApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/azure-functions/videoFunctionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/azure-functions/videoFunctionApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/cosmos-accounts/myCosmosAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/cosmos-accounts/myCosmosAccount.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/cosmos-databases/adminDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/cosmos-databases/adminDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/cosmos-databases/customerDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/cosmos-databases/customerDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/cosmos-databases/musicDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/cosmos-databases/musicDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/cosmos-databases/videoDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/cosmos-databases/videoDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/key-vaults/keyVault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/key-vaults/keyVault.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/log-analytics-workspaces/logAnalyticsWorkspace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/log-analytics-workspaces/logAnalyticsWorkspace.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/private-dns-zones/privateDNSZones.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/private-dns-zones/privateDNSZones.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/role-assignments/appConfigRoleAssignments.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/role-assignments/appConfigRoleAssignments.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/role-assignments/appInsightsRoleAssignments.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/role-assignments/appInsightsRoleAssignments.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/role-assignments/keyVaultRoleAssignments.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/role-assignments/keyVaultRoleAssignments.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/role-assignments/storageRoleAssignments.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/role-assignments/storageRoleAssignments.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/service-bus-namespaces/myServiceBusNamespace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/service-bus-namespaces/myServiceBusNamespace.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/sql-server-databases/adminDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/sql-server-databases/adminDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/sql-server-databases/customerDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/sql-server-databases/customerDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/sql-server-databases/musicDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/sql-server-databases/musicDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/sql-server-databases/videoDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/sql-server-databases/videoDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/sql-servers/mySqlServer.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/sql-servers/mySqlServer.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/storage-accounts/functionAppsStorageAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/storage-accounts/functionAppsStorageAccount.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/storage-accounts/myStorageAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/storage-accounts/myStorageAccount.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/virtual-machines/testVM.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/virtual-machines/testVM.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/virtual-networks/virtualNetwork.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/modules/virtual-networks/virtualNetwork.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/parameters/dev.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/parameters/dev.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/parameters/prod.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/parameters/prod.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/parameters/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/parameters/test.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/parameters/uat.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/base-services-rg/parameters/uat.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/main.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/main.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/music-api/musicApi.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/music-api/musicApi.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/music-api/musicApiBackend.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/music-api/musicApiBackend.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/music-api/musicApiDefinition.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/music-api/musicApiDefinition.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/music-api/musicApiOperations.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/music-api/musicApiOperations.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/music-api/musicApiPolicies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/music-api/musicApiPolicies.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/myApiManagement.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/myApiManagement.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/video-api/videoApi.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/video-api/videoApi.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/video-api/videoApiBackend.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/video-api/videoApiBackend.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/video-api/videoApiDefinition.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/video-api/videoApiDefinition.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/video-api/videoApiOperations.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/video-api/videoApiOperations.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/video-api/videoApiPolicies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/api-managements/my-api-management/video-api/videoApiPolicies.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/applicationGateway.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/applicationGateway.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/backend-pools/adminPublicPool.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/backend-pools/adminPublicPool.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/backend-pools/adminSitePool.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/backend-pools/adminSitePool.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/backend-pools/backendPools.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/backend-pools/backendPools.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/backend-pools/customerPublicPool.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/backend-pools/customerPublicPool.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/backend-pools/customerSitePool.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/backend-pools/customerSitePool.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/httpSettings.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/httpSettings.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/listeners/adminPublicListener.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/listeners/adminPublicListener.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/listeners/adminSiteListener.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/listeners/adminSiteListener.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/listeners/customerPublicListener.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/listeners/customerPublicListener.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/listeners/customerSiteListener.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/listeners/customerSiteListener.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/listeners/listeners.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/listeners/listeners.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/routing-rules/adminPublicRule.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/routing-rules/adminPublicRule.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/routing-rules/adminSiteRule.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/routing-rules/adminSiteRule.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/routing-rules/customerPublicRule.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/routing-rules/customerPublicRule.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/routing-rules/customerSiteRule.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/routing-rules/customerSiteRule.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/routing-rules/routingRules.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/application-gateways/my-gateway/routing-rules/routingRules.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/network-security-groups/apiManagementNSG.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/network-security-groups/apiManagementNSG.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/appConfigurationPrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/appConfigurationPrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/appServicePrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/appServicePrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/blobStoragePrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/blobStoragePrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/cosmosPrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/cosmosPrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/customPrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/customPrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/fileStoragePrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/fileStoragePrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/keyVaultPrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/keyVaultPrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/privateDNSZones.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/privateDNSZones.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/queueStoragePrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/queueStoragePrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/serviceBusPrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/serviceBusPrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/tableStoragePrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/private-dns-zones/tableStoragePrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/virtual-networks/virtualNetwork.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/modules/virtual-networks/virtualNetwork.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/parameters/dev.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/parameters/dev.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/parameters/prod.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/parameters/prod.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/parameters/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/parameters/test.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/parameters/uat.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/networking-layer-rg/parameters/uat.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/main.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/main.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/api-managements/my-existing-api-management/myExistingApiManagement.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/api-managements/my-existing-api-management/myExistingApiManagement.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/api-managements/my-existing-api-management/product-api/productApi.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/api-managements/my-existing-api-management/product-api/productApi.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/api-managements/my-existing-api-management/product-api/productApiBackend.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/api-managements/my-existing-api-management/product-api/productApiBackend.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/api-managements/my-existing-api-management/product-api/productApiDefinition.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/api-managements/my-existing-api-management/product-api/productApiDefinition.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/api-managements/my-existing-api-management/product-api/productApiOperations.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/api-managements/my-existing-api-management/product-api/productApiOperations.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/api-managements/my-existing-api-management/product-api/productApiPolicies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/api-managements/my-existing-api-management/product-api/productApiPolicies.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/app-service-plans/productAppServicePlan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/app-service-plans/productAppServicePlan.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/app-services/productApiWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/app-services/productApiWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/azure-functions/productFunctionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/azure-functions/productFunctionApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/cosmos-accounts/productCosmosAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/cosmos-accounts/productCosmosAccount.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/cosmos-databases/productDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/cosmos-databases/productDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/key-vaults/productKeyVault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/key-vaults/productKeyVault.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/sql-server-databases/productDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/sql-server-databases/productDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/sql-servers/productSqlServer.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/sql-servers/productSqlServer.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/storage-accounts/productFunctionsStorageAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/modules/storage-accounts/productFunctionsStorageAccount.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/parameters/dev.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/parameters/dev.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/parameters/prod.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/parameters/prod.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/parameters/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/parameters/test.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/parameters/uat.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Multiple Resource Groups/product-service-rg/parameters/uat.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/README.md -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/azure-pipelines.infra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/azure-pipelines.infra.yml -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/azure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/azure.txt -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/main.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/main.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/music-api/musicApi.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/music-api/musicApi.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/music-api/musicApiBackend.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/music-api/musicApiBackend.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/music-api/musicApiDefinition.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/music-api/musicApiDefinition.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/music-api/musicApiOperations.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/music-api/musicApiOperations.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/music-api/musicApiPolicies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/music-api/musicApiPolicies.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/myApiManagement.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/myApiManagement.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/video-api/videoApi.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/video-api/videoApi.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/video-api/videoApiBackend.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/video-api/videoApiBackend.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/video-api/videoApiDefinition.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/video-api/videoApiDefinition.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/video-api/videoApiOperations.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/video-api/videoApiOperations.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/video-api/videoApiPolicies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/api-managements/my-api-management/video-api/videoApiPolicies.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/app-configurations/myAppConfiguration.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/app-configurations/myAppConfiguration.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/app-service-plans/myAppServicePlan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/app-service-plans/myAppServicePlan.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/app-services/adminPublicWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/app-services/adminPublicWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/app-services/adminSiteWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/app-services/adminSiteWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/app-services/customerPublicWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/app-services/customerPublicWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/app-services/customerSiteWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/app-services/customerSiteWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/app-services/musicApiWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/app-services/musicApiWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/app-services/videoApiWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/app-services/videoApiWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/applicationGateway.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/applicationGateway.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/backend-pools/adminPublicPool.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/backend-pools/adminPublicPool.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/backend-pools/adminSitePool.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/backend-pools/adminSitePool.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/backend-pools/backendPools.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/backend-pools/backendPools.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/backend-pools/customerPublicPool.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/backend-pools/customerPublicPool.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/backend-pools/customerSitePool.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/backend-pools/customerSitePool.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/httpSettings.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/httpSettings.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/listeners/adminPublicListener.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/listeners/adminPublicListener.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/listeners/adminSiteListener.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/listeners/adminSiteListener.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/listeners/customerPublicListener.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/listeners/customerPublicListener.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/listeners/customerSiteListener.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/listeners/customerSiteListener.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/listeners/listeners.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/listeners/listeners.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/routing-rules/adminPublicRule.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/routing-rules/adminPublicRule.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/routing-rules/adminSiteRule.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/routing-rules/adminSiteRule.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/routing-rules/customerPublicRule.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/routing-rules/customerPublicRule.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/routing-rules/customerSiteRule.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/routing-rules/customerSiteRule.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/routing-rules/routingRules.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-gateways/my-gateway/routing-rules/routingRules.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-insights/adminAppInsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-insights/adminAppInsights.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-insights/applicationInsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-insights/applicationInsights.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-insights/customerAppInsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-insights/customerAppInsights.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-insights/musicAppInsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-insights/musicAppInsights.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/application-insights/videoAppInsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/application-insights/videoAppInsights.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/azure-functions/adminFunctionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/azure-functions/adminFunctionApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/azure-functions/customerFunctionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/azure-functions/customerFunctionApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/azure-functions/musicFunctionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/azure-functions/musicFunctionApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/azure-functions/videoFunctionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/azure-functions/videoFunctionApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/cosmos-accounts/myCosmosAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/cosmos-accounts/myCosmosAccount.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/cosmos-databases/adminDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/cosmos-databases/adminDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/cosmos-databases/customerDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/cosmos-databases/customerDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/cosmos-databases/musicDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/cosmos-databases/musicDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/cosmos-databases/videoDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/cosmos-databases/videoDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/key-vaults/keyVault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/key-vaults/keyVault.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/log-analytics-workspaces/logAnalyticsWorkspace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/log-analytics-workspaces/logAnalyticsWorkspace.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/network-security-groups/apiManagementNSG.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/network-security-groups/apiManagementNSG.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/appConfigurationPrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/appConfigurationPrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/appServicePrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/appServicePrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/blobStoragePrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/blobStoragePrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/cosmosPrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/cosmosPrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/customPrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/customPrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/fileStoragePrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/fileStoragePrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/keyVaultPrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/keyVaultPrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/privateDNSZones.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/privateDNSZones.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/queueStoragePrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/queueStoragePrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/serviceBusPrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/serviceBusPrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/tableStoragePrivateDNSZone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/private-dns-zones/tableStoragePrivateDNSZone.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/role-assignments/appConfigRoleAssignments.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/role-assignments/appConfigRoleAssignments.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/role-assignments/appInsightsRoleAssignments.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/role-assignments/appInsightsRoleAssignments.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/role-assignments/keyVaultRoleAssignments.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/role-assignments/keyVaultRoleAssignments.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/role-assignments/storageRoleAssignments.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/role-assignments/storageRoleAssignments.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/service-bus-namespaces/myServiceBusNamespace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/service-bus-namespaces/myServiceBusNamespace.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/sql-server-databases/adminDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/sql-server-databases/adminDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/sql-server-databases/customerDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/sql-server-databases/customerDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/sql-server-databases/musicDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/sql-server-databases/musicDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/sql-server-databases/videoDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/sql-server-databases/videoDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/sql-servers/mySqlServer.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/sql-servers/mySqlServer.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/storage-accounts/functionAppsStorageAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/storage-accounts/functionAppsStorageAccount.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/storage-accounts/myStorageAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/storage-accounts/myStorageAccount.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/virtual-machines/testVM.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/virtual-machines/testVM.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/modules/virtual-networks/virtualNetwork.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/modules/virtual-networks/virtualNetwork.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/parameters/dev.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/parameters/dev.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/parameters/prod.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/parameters/prod.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/parameters/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/parameters/test.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/base-services/parameters/uat.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/base-services/parameters/uat.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/main.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/main.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/api-managements/my-existing-api-management/myExistingApiManagement.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/api-managements/my-existing-api-management/myExistingApiManagement.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/api-managements/my-existing-api-management/product-api/productApi.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/api-managements/my-existing-api-management/product-api/productApi.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/api-managements/my-existing-api-management/product-api/productApiBackend.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/api-managements/my-existing-api-management/product-api/productApiBackend.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/api-managements/my-existing-api-management/product-api/productApiDefinition.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/api-managements/my-existing-api-management/product-api/productApiDefinition.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/api-managements/my-existing-api-management/product-api/productApiOperations.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/api-managements/my-existing-api-management/product-api/productApiOperations.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/api-managements/my-existing-api-management/product-api/productApiPolicies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/api-managements/my-existing-api-management/product-api/productApiPolicies.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/app-service-plans/productAppServicePlan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/app-service-plans/productAppServicePlan.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/app-services/productApiWebApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/app-services/productApiWebApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/azure-functions/productFunctionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/azure-functions/productFunctionApp.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/cosmos-accounts/productCosmosAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/cosmos-accounts/productCosmosAccount.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/cosmos-databases/productDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/cosmos-databases/productDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/key-vaults/productKeyVault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/key-vaults/productKeyVault.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/sql-server-databases/productDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/sql-server-databases/productDb.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/sql-servers/productSqlServer.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/sql-servers/productSqlServer.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/modules/storage-accounts/productFunctionsStorageAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/modules/storage-accounts/productFunctionsStorageAccount.bicep -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/parameters/dev.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/parameters/dev.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/parameters/prod.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/parameters/prod.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/parameters/test.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/parameters/test.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/Practical Private Endpoints/product-service/parameters/uat.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/Practical Private Endpoints/product-service/parameters/uat.parameters.json -------------------------------------------------------------------------------- /Azure/Bicep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/README.md -------------------------------------------------------------------------------- /Azure/Bicep/network-diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/network-diagram.drawio -------------------------------------------------------------------------------- /Azure/Bicep/network-diagram.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Bicep/network-diagram.drawio.png -------------------------------------------------------------------------------- /Azure/Compute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Compute/README.md -------------------------------------------------------------------------------- /Azure/Container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Container/README.md -------------------------------------------------------------------------------- /Azure/Cost Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Cost Management/README.md -------------------------------------------------------------------------------- /Azure/Data Warehouse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Data Warehouse/README.md -------------------------------------------------------------------------------- /Azure/Database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Database/README.md -------------------------------------------------------------------------------- /Azure/DevOps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/DevOps/README.md -------------------------------------------------------------------------------- /Azure/Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Functions/README.md -------------------------------------------------------------------------------- /Azure/Identity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Identity/README.md -------------------------------------------------------------------------------- /Azure/Integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Integration/README.md -------------------------------------------------------------------------------- /Azure/IoT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Azure/Monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Monitoring/README.md -------------------------------------------------------------------------------- /Azure/Networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Networking/README.md -------------------------------------------------------------------------------- /Azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/README.md -------------------------------------------------------------------------------- /Azure/Security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Security/README.md -------------------------------------------------------------------------------- /Azure/Storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Azure/Storage/README.md -------------------------------------------------------------------------------- /Dapr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Dapr/README.md -------------------------------------------------------------------------------- /Docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Docker/README.md -------------------------------------------------------------------------------- /Elastic (ELK) Stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Elastic (ELK) Stack/README.md -------------------------------------------------------------------------------- /Git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Git/README.md -------------------------------------------------------------------------------- /Google Cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Google Cloud/README.md -------------------------------------------------------------------------------- /Infrastructure as Code/Ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Ansible/README.md -------------------------------------------------------------------------------- /Infrastructure as Code/Ansible/create-ad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Ansible/create-ad.yml -------------------------------------------------------------------------------- /Infrastructure as Code/Ansible/join-ad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Ansible/join-ad.yml -------------------------------------------------------------------------------- /Infrastructure as Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/README.md -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/README.md -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 1/README.md -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 1/instances.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 1/instances.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 1/loadbalancer.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 1/loadbalancer.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 1/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 1/locals.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 1/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 1/main.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 1/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 1/outputs.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 1/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 1/terraform.tfvars -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 1/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 1/variables.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 2/README.md -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 2/instances.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 2/instances.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 2/loadbalancer.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 2/loadbalancer.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 2/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 2/locals.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 2/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 2/main.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 2/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 2/outputs.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 2/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 2/providers.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 2/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 2/s3.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 2/terraform.tfvars -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 2/variables.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 2/website/Globo_logo_Vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 2/website/Globo_logo_Vert.png -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 2/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 2/website/index.html -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/README.md -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/instances.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/instances.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/loadbalancer.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/loadbalancer.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/locals.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/main.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/outputs.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/providers.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/s3.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/templates/startup_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/templates/startup_script.tpl -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/terraform.tfvars -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/variables.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/website/Globo_logo_Vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/website/Globo_logo_Vert.png -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/aws sample 3/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/aws sample 3/website/index.html -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/instances.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/instances.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/loadbalancer.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/loadbalancer.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/locals.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/main.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/modules/globo-web-app-s3/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/modules/globo-web-app-s3/main.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/modules/globo-web-app-s3/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/modules/globo-web-app-s3/outputs.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/modules/globo-web-app-s3/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/modules/globo-web-app-s3/variables.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/outputs.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/providers.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/s3.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/templates/startup_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/templates/startup_script.tpl -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/terraform.tfvars -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/variables.tf -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/website/Globo_logo_Vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/website/Globo_logo_Vert.png -------------------------------------------------------------------------------- /Infrastructure as Code/Terraform/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Infrastructure as Code/Terraform/website/index.html -------------------------------------------------------------------------------- /Jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Jenkins/README.md -------------------------------------------------------------------------------- /Kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kafka/README.md -------------------------------------------------------------------------------- /Kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/README.md -------------------------------------------------------------------------------- /Kubernetes/configMaps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/configMaps/README.md -------------------------------------------------------------------------------- /Kubernetes/configMaps/app.configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/configMaps/app.configmap.yml -------------------------------------------------------------------------------- /Kubernetes/configMaps/app.secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/configMaps/app.secret.yml -------------------------------------------------------------------------------- /Kubernetes/configMaps/nginx.deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/configMaps/nginx.deployment.yml -------------------------------------------------------------------------------- /Kubernetes/deployments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/deployments/README.md -------------------------------------------------------------------------------- /Kubernetes/deployments/nginx.deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/deployments/nginx.deployment.yml -------------------------------------------------------------------------------- /Kubernetes/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/helm/README.md -------------------------------------------------------------------------------- /Kubernetes/imgs/master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/imgs/master.png -------------------------------------------------------------------------------- /Kubernetes/imgs/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/imgs/node.png -------------------------------------------------------------------------------- /Kubernetes/imgs/pod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/imgs/pod.png -------------------------------------------------------------------------------- /Kubernetes/kubernetes.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/kubernetes.drawio -------------------------------------------------------------------------------- /Kubernetes/pods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/pods/README.md -------------------------------------------------------------------------------- /Kubernetes/pods/nginx.pod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/pods/nginx.pod.yml -------------------------------------------------------------------------------- /Kubernetes/services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/services/README.md -------------------------------------------------------------------------------- /Kubernetes/services/clusterip.service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/services/clusterip.service.yml -------------------------------------------------------------------------------- /Kubernetes/services/externalname.service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/services/externalname.service.yml -------------------------------------------------------------------------------- /Kubernetes/services/loadbalancer.service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/services/loadbalancer.service.yml -------------------------------------------------------------------------------- /Kubernetes/services/nodeport.service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Kubernetes/services/nodeport.service.yml -------------------------------------------------------------------------------- /Networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Networking/README.md -------------------------------------------------------------------------------- /Networking/imgs/osi-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Networking/imgs/osi-model.png -------------------------------------------------------------------------------- /Networking/imgs/tcp-ip-model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Networking/imgs/tcp-ip-model.jpg -------------------------------------------------------------------------------- /Octopus Deploy/Deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/Deployment.md -------------------------------------------------------------------------------- /Octopus Deploy/InstallOctopusServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/InstallOctopusServer.md -------------------------------------------------------------------------------- /Octopus Deploy/InstallTentacle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/InstallTentacle.md -------------------------------------------------------------------------------- /Octopus Deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/README.md -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Deployment_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Deployment_01.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Deployment_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Deployment_02.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Deployment_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Deployment_03.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Deployment_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Deployment_04.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Deployment_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Deployment_05.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Deployment_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Deployment_06.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_01.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_02.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_03.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_04.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_05.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_06.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_07.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_08.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_09.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_10.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_11.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_12.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_13.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_14.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_15.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Sever_Installation_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Sever_Installation_16.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Tentacle_Installation_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Tentacle_Installation_01.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Tentacle_Installation_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Tentacle_Installation_02.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Tentacle_Installation_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Tentacle_Installation_03.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Tentacle_Installation_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Tentacle_Installation_04.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Tentacle_Installation_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Tentacle_Installation_05.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Tentacle_Installation_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Tentacle_Installation_06.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Tentacle_Installation_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Tentacle_Installation_07.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Tentacle_Installation_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Tentacle_Installation_08.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Tentacle_Installation_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Tentacle_Installation_09.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Tentacle_Installation_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Tentacle_Installation_10.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Tentacle_Installation_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Tentacle_Installation_11.png -------------------------------------------------------------------------------- /Octopus Deploy/imgs/Tentacle_Installation_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Octopus Deploy/imgs/Tentacle_Installation_12.png -------------------------------------------------------------------------------- /Operating Systems/Linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Operating Systems/Linux/README.md -------------------------------------------------------------------------------- /Operating Systems/WSL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Operating Systems/WSL/README.md -------------------------------------------------------------------------------- /Operating Systems/Windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Operating Systems/Windows/README.md -------------------------------------------------------------------------------- /PowerShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/PowerShell/README.md -------------------------------------------------------------------------------- /Prometheus & Grafana/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Proxies/HAProxy/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Proxies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Proxies/README.md -------------------------------------------------------------------------------- /Proxies/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Proxies/nginx/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CICD.NET -------------------------------------------------------------------------------- /Secrets Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Secrets Management/README.md -------------------------------------------------------------------------------- /Security/Ethical Hacking/Cloud Computing.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Security/Ethical Hacking/Cryptography.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Security/Ethical Hacking/Denial of Service.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Security/Ethical Hacking/Enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Security/Ethical Hacking/Enumeration.md -------------------------------------------------------------------------------- /Security/Ethical Hacking/Evading IDS, Firewalls, and Honeypots.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Security/Ethical Hacking/Hacking Web Applications.md: -------------------------------------------------------------------------------- 1 | # Hacking Web Applications 2 | -------------------------------------------------------------------------------- /Security/Ethical Hacking/Hacking Web Servers.md: -------------------------------------------------------------------------------- 1 | # Hacking Web Servers 2 | -------------------------------------------------------------------------------- /Security/Ethical Hacking/Malware Threats.md: -------------------------------------------------------------------------------- 1 | # Malware Threats 2 | -------------------------------------------------------------------------------- /Security/Ethical Hacking/Penetration Testing.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Security/Ethical Hacking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Security/Ethical Hacking/README.md -------------------------------------------------------------------------------- /Security/Ethical Hacking/Reconnaissance & Footprinting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Security/Ethical Hacking/Reconnaissance & Footprinting.md -------------------------------------------------------------------------------- /Security/Ethical Hacking/Scanning Networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Security/Ethical Hacking/Scanning Networks.md -------------------------------------------------------------------------------- /Security/Ethical Hacking/Sniffing.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Security/Ethical Hacking/System Hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Security/Ethical Hacking/System Hacking.md -------------------------------------------------------------------------------- /Security/Ethical Hacking/Understanding Ethical Hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Security/Ethical Hacking/Understanding Ethical Hacking.md -------------------------------------------------------------------------------- /Security/Ethical Hacking/Vulnerability Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Security/Ethical Hacking/Vulnerability Analysis.md -------------------------------------------------------------------------------- /Security/OWASP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Security/OWASP/README.md -------------------------------------------------------------------------------- /Security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Security/README.md -------------------------------------------------------------------------------- /Service Mesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Service Mesh/README.md -------------------------------------------------------------------------------- /SonarQube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/README.md -------------------------------------------------------------------------------- /SonarQube/imgs/configure-mssqlserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/configure-mssqlserver.png -------------------------------------------------------------------------------- /SonarQube/imgs/configure-mssqlserver2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/configure-mssqlserver2.png -------------------------------------------------------------------------------- /SonarQube/imgs/configure-sonar-scanner-msbuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/configure-sonar-scanner-msbuild.png -------------------------------------------------------------------------------- /SonarQube/imgs/configure-sonarqube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/configure-sonarqube.png -------------------------------------------------------------------------------- /SonarQube/imgs/copy-jdbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/copy-jdbc.png -------------------------------------------------------------------------------- /SonarQube/imgs/copy-jdbc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/copy-jdbc2.png -------------------------------------------------------------------------------- /SonarQube/imgs/download-jdbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/download-jdbc.png -------------------------------------------------------------------------------- /SonarQube/imgs/download-openjdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/download-openjdk.png -------------------------------------------------------------------------------- /SonarQube/imgs/download-sonar-scanner-msbuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/download-sonar-scanner-msbuild.png -------------------------------------------------------------------------------- /SonarQube/imgs/download-sonar-scanner-msbuild1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/download-sonar-scanner-msbuild1.png -------------------------------------------------------------------------------- /SonarQube/imgs/download-sonarqube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/download-sonarqube.png -------------------------------------------------------------------------------- /SonarQube/imgs/install-sonarqube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/install-sonarqube.png -------------------------------------------------------------------------------- /SonarQube/imgs/install-sonarqube2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/SonarQube/imgs/install-sonarqube2.png -------------------------------------------------------------------------------- /TeamCity/BuildConfiguration.NetCore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/BuildConfiguration.NetCore.md -------------------------------------------------------------------------------- /TeamCity/BuildConfigurationAngular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/BuildConfigurationAngular.md -------------------------------------------------------------------------------- /TeamCity/InstallTeamCity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/InstallTeamCity.md -------------------------------------------------------------------------------- /TeamCity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/README.md -------------------------------------------------------------------------------- /TeamCity/imgs/Angular_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Angular_01.png -------------------------------------------------------------------------------- /TeamCity/imgs/Angular_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Angular_02.png -------------------------------------------------------------------------------- /TeamCity/imgs/Angular_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Angular_03.png -------------------------------------------------------------------------------- /TeamCity/imgs/Angular_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Angular_04.png -------------------------------------------------------------------------------- /TeamCity/imgs/Angular_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Angular_05.png -------------------------------------------------------------------------------- /TeamCity/imgs/Angular_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Angular_06.png -------------------------------------------------------------------------------- /TeamCity/imgs/Angular_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Angular_07.png -------------------------------------------------------------------------------- /TeamCity/imgs/Angular_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Angular_08.png -------------------------------------------------------------------------------- /TeamCity/imgs/Angular_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Angular_09.png -------------------------------------------------------------------------------- /TeamCity/imgs/Angular_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Angular_10.png -------------------------------------------------------------------------------- /TeamCity/imgs/Angular_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Angular_11.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_01.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_02.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_03.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_04.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_05.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_06.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_07.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_08.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_09.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_10.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_11.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_12.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_6.png -------------------------------------------------------------------------------- /TeamCity/imgs/Install_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/Install_8.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_01.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_02.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_03.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_04.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_05.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_06.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_07.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_08.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_09.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_10.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_11.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_12.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_13.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_14.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_15.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_16.png -------------------------------------------------------------------------------- /TeamCity/imgs/NetCore_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/NetCore_17.png -------------------------------------------------------------------------------- /TeamCity/imgs/powershell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/TeamCity/imgs/powershell.txt -------------------------------------------------------------------------------- /Visual Studio Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Visual Studio Code/README.md -------------------------------------------------------------------------------- /Web Servers/IIS/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Web Servers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Web Servers/README.md -------------------------------------------------------------------------------- /Web Servers/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Web Servers/nginx/README.md -------------------------------------------------------------------------------- /Windows Failover Clustering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/Practical.DevSecOps/HEAD/Windows Failover Clustering/README.md --------------------------------------------------------------------------------