Skip to content

Commit

Permalink
Merge pull request #19 from nautobot/develop
Browse files Browse the repository at this point in the history
Release v1.0.1
  • Loading branch information
jathanism authored Jan 7, 2022
2 parents a4a580a + 9c43650 commit 3ff1eb5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Nautobot Secrets Providers Changelog

## v1.0.1 (2022-01-06)

### Fixed

- [#17](https://github.com/nautobot/nautobot-plugin-secrets-providers/issues/17) Fixed `ModuleNotFoundError` when not installing AWS dependencies

## v1.0.0 (2021-12-22)

This is the initial release of Nautobot Secrets Providers that includes support for basic key-value secrets AWS Secrets Manager and HashiCorp Vault. Please see [README.md](./README.md) for more information.
5 changes: 3 additions & 2 deletions nautobot_secrets_providers/providers/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@

try:
import boto3
except ImportError:
from botocore.exceptions import ClientError
except (ImportError, ModuleNotFoundError):
boto3 = None
from botocore.exceptions import ClientError

from django import forms

from nautobot.utilities.forms import BootstrapMixin
Expand Down

0 comments on commit 3ff1eb5

Please sign in to comment.