Skip to content

Commit

Permalink
add config map
Browse files Browse the repository at this point in the history
  • Loading branch information
goFrendiAsgard committed Nov 6, 2023
1 parent 29a1445 commit f78bbeb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/zrb/task/base_remote_cmd_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,15 @@ def __init__(
user: str = '',
password: str = '',
ssh_key: str = '',
port: int = 22
port: int = 22,
config_map: Optional[Mapping[str, str]] = None
):
self.host = host
self.user = user
self.password = password
self.ssh_key = ssh_key
self.port = port
self.config_map = {} if config_map is None else config_map


@typechecked
Expand Down

0 comments on commit f78bbeb

Please sign in to comment.