Skip to content

Commit

Permalink
feat: GRE tunnel support for Transit Gateway (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennburger authored Jun 17, 2021
1 parent ed775c4 commit 87e6bf1
Show file tree
Hide file tree
Showing 7 changed files with 1,984 additions and 221 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ venv/
python3/

*.env
.*env

# resources
resources/output.wav
Expand Down
Binary file removed .transit_env.enc
Binary file not shown.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ matrix:
[ -z "${TRAVIS_TAG}" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]
&& openssl aes-256-cbc -K $encrypted_fc092b9428d6_key -iv $encrypted_fc092b9428d6_iv -in cis.env.enc -out cis.env -d || true
&& openssl aes-256-cbc -K $encrypted_d4a185972ecc_key -iv $encrypted_d4a185972ecc_iv -in pdns.env.enc -out pdns.env -d || true
&& openssl aes-256-cbc -K $encrypted_16de86179301_key -iv $encrypted_16de86179301_iv -in .transit_env.enc -out .transit_env -d || true
&& openssl aes-256-cbc -K $encrypted_3d8a3eb98382_key -iv $encrypted_3d8a3eb98382_iv -in transit.env.enc -out transit.env -d || true
&& openssl aes-256-cbc -K $encrypted_27cb64608ff6_key -iv $encrypted_27cb64608ff6_iv -in dl.env.enc -out dl.env -d || true
&& openssl aes-256-cbc -K $encrypted_89a9eb4f9417_key -iv $encrypted_89a9eb4f9417_iv -in dns.env.enc -out dns.env -d || true
- python: 3.7
Expand Down
1,572 changes: 1,372 additions & 200 deletions ibm_cloud_networking_services/transit_gateway_apis_v1.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions test/integration/test_transit_gateway_apis_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@

# load the .env file containing your environment variables for the required
try:
load_dotenv(find_dotenv(filename=".transit_env"))
load_dotenv(find_dotenv(filename="transit.env"))
except:
raise unittest.SkipTest('no .transit_env file loaded, skipping...')
raise unittest.SkipTest('no transit.env file loaded, skipping...')

class TestTransitGatewayApisV1(unittest.TestCase):
""" Test class for Transit Gateway sdk functions """
Expand Down
626 changes: 609 additions & 17 deletions test/unit/test_transit_gateway_apis_v1.py

Large diffs are not rendered by default.

Binary file added transit.env.enc
Binary file not shown.

0 comments on commit 87e6bf1

Please sign in to comment.