Skip to content

Commit da40347

Browse files
committed
bump version and add cloud connect examples
1 parent dee2c92 commit da40347

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,20 @@ $ cirun repo remove aktech/sympy
7676
──────────────────────────────────────────────────────────────────────────────────────────────────────────
7777
```
7878

79+
- Connect cloud provider with Cirun
80+
81+
```bash
82+
cirun cloud connect aws --access-key AKIXXXXXXXXX --secret-key KFCF3yi+df0n12345678AMASDFGHJ
83+
84+
cirun cloud connect azure \
85+
--subscription-id 31184337-0346-4782-ae59-eb185fd0cfa1 \
86+
--tenant-id a66e466d-698b-4a91-b9e3-949f9cc04f11 \
87+
--client-id 340d01fc-ba24-43ee-844e-d364899d29e7 \
88+
--client-secret KFCF3yi+df0cirunIsAwesomeIsntIt?n1DFGHJ
89+
90+
cirun cloud connect gcp --key-file /path/to/service-account-key.json
91+
```
92+
7993
### Client
8094

8195
```python

cirun/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# SPDX-FileCopyrightText: 2022-present Amit Kumar <[email protected]>
22
#
33
# SPDX-License-Identifier: MIT
4-
__version__ = '0.1'
4+
__version__ = '0.2'

cirun/cloud.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ def option(name, help, *args, **kwargs):
3333
...,
3434
name,
3535
help=help,
36-
# is_eager=True,
3736
show_default=False,
3837
*args, **kwargs
3938
)

0 commit comments

Comments
 (0)