Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Always use the get_*_account helper methods (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmc-msft authored Oct 29, 2020
1 parent 0d037f7 commit f4b874e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
8 changes: 4 additions & 4 deletions src/api-service/__app__/onefuzzlib/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

import datetime
import logging
import os
from typing import List, Optional, Tuple

from azure.mgmt.compute.models import VirtualMachine
Expand All @@ -23,6 +22,7 @@
from .__version__ import __version__
from .azure.auth import build_auth
from .azure.containers import get_file_sas_url, save_blob
from .azure.creds import get_func_storage
from .azure.ip import get_public_ip
from .azure.queue import get_queue_sas
from .azure.vm import VM
Expand Down Expand Up @@ -191,12 +191,12 @@ def save_proxy_config(self) -> None:
url=get_file_sas_url(
"proxy-configs",
"%s/config.json" % self.region,
account_id=os.environ["ONEFUZZ_FUNC_STORAGE"],
account_id=get_func_storage(),
read=True,
),
notification=get_queue_sas(
"proxy",
account_id=os.environ["ONEFUZZ_FUNC_STORAGE"],
account_id=get_func_storage(),
add=True,
),
forwards=forwards,
Expand All @@ -207,7 +207,7 @@ def save_proxy_config(self) -> None:
"proxy-configs",
"%s/config.json" % self.region,
proxy_config.json(),
account_id=os.environ["ONEFUZZ_FUNC_STORAGE"],
account_id=get_func_storage(),
)

@classmethod
Expand Down
4 changes: 2 additions & 2 deletions src/api-service/__app__/onefuzzlib/tasks/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from onefuzztypes.models import TaskConfig, TaskDefinition, TaskUnitConfig

from ..azure.containers import blob_exists, container_exists, get_container_sas_url
from ..azure.creds import get_fuzz_storage, get_instance_url
from ..azure.creds import get_func_storage, get_fuzz_storage, get_instance_url
from ..azure.queue import get_queue_sas
from .defs import TASK_DEFINITIONS

Expand Down Expand Up @@ -183,7 +183,7 @@ def build_task_config(
telemetry_key=os.environ.get("ONEFUZZ_TELEMETRY"),
heartbeat_queue=get_queue_sas(
"task-heartbeat",
account_id=os.environ["ONEFUZZ_FUNC_STORAGE"],
account_id=get_func_storage(),
add=True,
),
back_channel_address="https://%s/api/back_channel" % (get_instance_url()),
Expand Down
9 changes: 7 additions & 2 deletions src/api-service/__app__/pool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@
from onefuzztypes.requests import PoolCreate, PoolSearch, PoolStop
from onefuzztypes.responses import BoolResult

from ..onefuzzlib.azure.creds import get_base_region, get_instance_url, get_regions
from ..onefuzzlib.azure.creds import (
get_base_region,
get_func_storage,
get_instance_url,
get_regions,
)
from ..onefuzzlib.azure.queue import get_queue_sas
from ..onefuzzlib.azure.vmss import list_available_skus
from ..onefuzzlib.pools import Pool
Expand All @@ -27,7 +32,7 @@ def set_config(pool: Pool) -> Pool:
telemetry_key=os.environ.get("ONEFUZZ_TELEMETRY"),
heartbeat_queue=get_queue_sas(
"node-heartbeat",
account_id=os.environ["ONEFUZZ_FUNC_STORAGE"],
account_id=get_func_storage(),
add=True,
),
)
Expand Down
4 changes: 2 additions & 2 deletions src/api-service/__app__/queue_file_changes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

import json
import logging
import os
from typing import Dict

import azure.functions as func

from ..onefuzzlib.azure.creds import get_fuzz_storage
from ..onefuzzlib.dashboard import get_event
from ..onefuzzlib.notifications.main import new_files

Expand All @@ -25,7 +25,7 @@ def file_added(event: Dict) -> None:
def main(msg: func.QueueMessage, dashboard: func.Out[str]) -> None:
event = json.loads(msg.get_body())

if event["topic"] != os.environ["ONEFUZZ_DATA_STORAGE"]:
if event["topic"] != get_fuzz_storage():
return

if event["eventType"] != "Microsoft.Storage.BlobCreated":
Expand Down

0 comments on commit f4b874e

Please sign in to comment.