Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
terraform-cloud-mcp
by
severity1
Verified
GitHub
Cloud Platforms
Developer Tools
Python
MIT License
3
Linux
Apple
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
models
models/auth.py
models/__init__.py
"""
Authentication models for Terraform Cloud
"""
from
dataclasses
import
dataclass
from
typing
import
Optional
@
dataclass
class
AuthResult
:
"""
Result of an authentication operation
"""
success
:
bool
message
:
str
user_name
:
Optional
[
str
] =
None