8000 Implemented AWS::KMS::* Resource provider for CloudFormation by Morijarti · Pull Request #9304 · localstack/localstack · GitHub
[go: up one dir, main page]

Skip to content

Implemented AWS::KMS::* Resource provider for CloudFormation #9304

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed unused imports
  • Loading branch information
Morijarti committed Oct 6, 2023
commit db4f117bb7a05f8f08d6ee317628885cadcf2cfb
3 changes: 1 addition & 2 deletions localstack/services/kms/resource_providers/aws_kms_alias.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
from __future__ import annotations

from pathlib import Path
from typing import Optional, Type, TypedDict
from typing import Optional, TypedDict

import localstack.services.cloudformation.provider_utils as util
from localstack.services.cloudformation.resource_provider import (
CloudFormationResourceProviderPlugin,
OperationStatus,
ProgressEvent,
ResourceProvider,
Expand Down
3 changes: 1 addition & 2 deletions localstack/services/kms/resource_providers/aws_kms_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@

import json
from pathlib import Path
from typing import Optional, Type, TypedDict
from typing import Optional, TypedDict

import localstack.services.cloudformation.provider_utils as util
from localstack.services.cloudformation.resource_provider import (
CloudFormationResourceProviderPlugin,
OperationStatus,
ProgressEvent,
ResourceProvider,
Expand Down
0