diff --git a/docs/developer-guide/provider.md b/docs/developer-guide/provider.md index 47b82c78c21..ecc7c1493aa 100644 --- a/docs/developer-guide/provider.md +++ b/docs/developer-guide/provider.md @@ -190,18 +190,18 @@ from prowler.providers.common.models import Audit_Metadata from prowler.providers.common.provider import Provider from prowler.providers..models import ( # All providers models needed - ProvierSessionModel, - ProvierIdentityModel, - ProvierOutputOptionsModel + ProviderSessionModel, + ProviderIdentityModel, + ProviderOutputOptionsModel ) class NewProvider(Provider): # All properties from the class, some of this are properties in the base class _type: str = "" - _session: - _identity: + _session: + _identity: _audit_config: dict - _output_options: ProvierOutputOptionsModel + _output_options: ProviderOutputOptionsModel _mutelist: dict audit_metadata: Audit_Metadata @@ -212,13 +212,13 @@ class NewProvider(Provider): arguments (dict): A dictionary containing configuration arguments. """ logger.info("Setting provider ...") - # First get from arguments the necesary from the cloud acount (subscriptions or projects or whatever the provider use for storing services) + # First get from arguments the necessary from the cloud account (subscriptions or projects or whatever the provider use for storing services) # Set the session with the method enforced by parent class self._session = self.setup_session(credentials_file) # Set the Identity class normaly the provider class give by Python provider library - self._identity = () + self._identity = () # Set the provider configuration self._audit_config = load_and_validate_config_file( @@ -254,7 +254,7 @@ class NewProvider(Provider): Can include all necessary arguments to setup the session Returns: - Credentials necesary to communicate with the provider. + Credentials necessary to communicate with the provider. """ pass