diff --git a/monkey/common/cloud/azure/azure_instance.py b/monkey/common/cloud/azure/azure_instance.py deleted file mode 100644 index 859ab279f..000000000 --- a/monkey/common/cloud/azure/azure_instance.py +++ /dev/null @@ -1,69 +0,0 @@ -import logging - -import requests -import simplejson - -from common.cloud.environment_names import Environment -from common.cloud.instance import CloudInstance -from common.common_consts.timeouts import SHORT_REQUEST_TIMEOUT - -LATEST_AZURE_METADATA_API_VERSION = "2019-04-30" -AZURE_METADATA_SERVICE_URL = ( - "http://169.254.169.254/metadata/instance?api-version=%s" % LATEST_AZURE_METADATA_API_VERSION -) - -logger = logging.getLogger(__name__) - - -class AzureInstance(CloudInstance): - """ - Access to useful information about the current machine if it's an Azure VM. - Based on Azure metadata service: - https://docs.microsoft.com/en-us/azure/virtual-machines/windows/instance-metadata-service - """ - - def is_instance(self): - return self._on_azure - - def get_cloud_provider_name(self) -> Environment: - return Environment.AZURE - - def __init__(self): - """ - Determines if on Azure and if so, gets some basic metadata on this instance. - """ - self.instance_name = None - self.instance_id = None - self.location = None - self._on_azure = False - - try: - response = requests.get( - AZURE_METADATA_SERVICE_URL, - headers={"Metadata": "true"}, - timeout=SHORT_REQUEST_TIMEOUT, - ) - - # If not on cloud, the metadata URL is non-routable and the connection will fail. - # If on AWS, should get 404 since the metadata service URL is different, - # so bool(response) will be false. - if response: - logger.debug("Trying to parse Azure metadata.") - self.try_parse_response(response) - else: - logger.warning(f"Metadata response not ok: {response.status_code}") - except requests.RequestException: - logger.debug( - "Failed to get response from Azure metadata service: This instance is not on " - "Azure." - ) - - def try_parse_response(self, response): - try: - response_data = response.json() - self.instance_name = response_data["compute"]["name"] - self.instance_id = response_data["compute"]["vmId"] - self.location = response_data["compute"]["location"] - self._on_azure = True - except (KeyError, simplejson.errors.JSONDecodeError) as e: - logger.exception(f"Error while parsing response from Azure metadata service: {e}") diff --git a/monkey/tests/unit_tests/common/cloud/azure/test_azure_instance.py b/monkey/tests/unit_tests/common/cloud/azure/test_azure_instance.py deleted file mode 100644 index a7bed81dd..000000000 --- a/monkey/tests/unit_tests/common/cloud/azure/test_azure_instance.py +++ /dev/null @@ -1,223 +0,0 @@ -import pytest -import requests -import requests_mock -import simplejson - -from common.cloud.azure.azure_instance import AZURE_METADATA_SERVICE_URL, AzureInstance -from common.cloud.environment_names import Environment - -GOOD_DATA = { - "compute": { - "azEnvironment": "AZUREPUBLICCLOUD", - "isHostCompatibilityLayerVm": "true", - "licenseType": "Windows_Client", - "location": "westus", - "name": "examplevmname", - "offer": "Windows", - "osProfile": { - "adminUsername": "admin", - "computerName": "examplevmname", - "disablePasswordAuthentication": "true", - }, - "osType": "linux", - "placementGroupId": "f67c14ab-e92c-408c-ae2d-da15866ec79a", - "plan": {"name": "planName", "product": "planProduct", "publisher": "planPublisher"}, - "platformFaultDomain": "36", - "platformUpdateDomain": "42", - "publicKeys": [ - {"keyData": "ssh-rsa 0", "path": "/home/user/.ssh/authorized_keys0"}, - {"keyData": "ssh-rsa 1", "path": "/home/user/.ssh/authorized_keys1"}, - ], - "publisher": "RDFE-Test-Microsoft-Windows-Server-Group", - "resourceGroupName": "macikgo-test-may-23", - "resourceId": "/subscriptions/xxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx/resourceGroups/macikgo-test" - "-may-23/" - "providers/Microsoft.Compute/virtualMachines/examplevmname", - "securityProfile": {"secureBootEnabled": "true", "virtualTpmEnabled": "false"}, - "sku": "Windows-Server-2012-R2-Datacenter", - "storageProfile": { - "dataDisks": [ - { - "caching": "None", - "createOption": "Empty", - "diskSizeGB": "1024", - "image": {"uri": ""}, - "lun": "0", - "managedDisk": { - "id": "/subscriptions/xxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx/" - "resourceGroups/macikgo-test-may-23/providers/" - "Microsoft.Compute/disks/exampledatadiskname", - "storageAccountType": "Standard_LRS", - }, - "name": "exampledatadiskname", - "vhd": {"uri": ""}, - "writeAcceleratorEnabled": "false", - } - ], - "imageReference": { - "id": "", - "offer": "UbuntuServer", - "publisher": "Canonical", - "sku": "16.04.0-LTS", - "version": "latest", - }, - "osDisk": { - "caching": "ReadWrite", - "createOption": "FromImage", - "diskSizeGB": "30", - "diffDiskSettings": {"option": "Local"}, - "encryptionSettings": {"enabled": "false"}, - "image": {"uri": ""}, - "managedDisk": { - "id": "/subscriptions/xxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx/" - "resourceGroups/macikgo-test-may-23/providers/" - "Microsoft.Compute/disks/exampleosdiskname", - "storageAccountType": "Standard_LRS", - }, - "name": "exampleosdiskname", - "osType": "Linux", - "vhd": {"uri": ""}, - "writeAcceleratorEnabled": "false", - }, - }, - "subscriptionId": "xxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx", - "tags": "baz:bash;foo:bar", - "version": "15.05.22", - "vmId": "02aab8a4-74ef-476e-8182-f6d2ba4166a6", - "vmScaleSetName": "crpteste9vflji9", - "vmSize": "Standard_A3", - "zone": "", - }, - "network": { - "interface": [ - { - "ipv4": { - "ipAddress": [{"privateIpAddress": "10.144.133.132", "publicIpAddress": ""}], - "subnet": [{"address": "10.144.133.128", "prefix": "26"}], - }, - "ipv6": {"ipAddress": []}, - "macAddress": "0011AAFFBB22", - } - ] - }, -} - -BAD_DATA_NOT_JSON = ( - '\n\n
\n\n\n