Skip to content

Commit 78ac102

Browse files
.gitignore final update
1 parent c0c2525 commit 78ac102

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,5 +138,3 @@ protos.bin
138138
# Local RSA keys
139139
.local/*
140140

141-
terraform_key*
142-
*.pub

src/pytfe/client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from .resources.oauth_client import OAuthClients
1111
from .resources.oauth_token import OAuthTokens
1212
from .resources.organization_membership import OrganizationMemberships
13+
from .resources.organization_token import OrganizationTokens
1314
from .resources.organizations import Organizations
1415
from .resources.plan import Plans
1516
from .resources.policy import Policies
@@ -69,6 +70,7 @@ def __init__(self, config: TFEConfig | None = None):
6970
self.plans = Plans(self._transport)
7071
self.organizations = Organizations(self._transport)
7172
self.organization_memberships = OrganizationMemberships(self._transport)
73+
self.organization_tokens = OrganizationTokens(self._transport)
7274
self.projects = Projects(self._transport)
7375
self.variables = Variables(self._transport)
7476
self.variable_sets = VariableSets(self._transport)

0 commit comments

Comments
 (0)