Skip to content

Commit

Permalink
fix(resource_name): Fix wrong resource names for terraform provider.
Browse files Browse the repository at this point in the history
  • Loading branch information
Noahnc committed Dec 15, 2023
1 parent bbc6171 commit 0998bff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infrapatch/core/models/versioned_terraform_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def source(self) -> str:

@property
def resource_name(self):
return "Module"
return "Terraform Module"

@source.setter
def source(self, source: str):
Expand Down Expand Up @@ -75,7 +75,7 @@ def source(self) -> str:

@property
def resource_name(self):
return "Module"
return "Terraform Provider"

@source.setter
def source(self, source: str) -> None:
Expand Down

0 comments on commit 0998bff

Please sign in to comment.