Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var PlanfileCmd = &cobra.Command{
Use: "planfile",
Short: "Manage Terraform plan files",
Long: `Commands for managing Terraform plan files, including upload, download, list, delete, and show.`,
}
PlanfileCmd represents the base command for planfile operations.
Functions ¶
This section is empty.
Types ¶
type BaseOptions ¶
BaseOptions contains flags common to all planfile commands.
type DeleteOptions ¶
type DeleteOptions struct {
BaseOptions
Key string
Force bool
}
DeleteOptions contains parsed flags for the delete command.
type DownloadOptions ¶
type DownloadOptions struct {
BaseOptions
Key string
OutputPath string
}
DownloadOptions contains parsed flags for the download command.
type ListOptions ¶
type ListOptions struct {
BaseOptions
Format string
Prefix string
}
ListOptions contains parsed flags for the list command.
type ShowOptions ¶
type ShowOptions struct {
BaseOptions
Key string
Format string
}
ShowOptions contains parsed flags for the show command.
type UploadOptions ¶
type UploadOptions struct {
BaseOptions
PlanfilePath string
Key string
Stack string
Component string
SHA string
}
UploadOptions contains parsed flags for the upload command.
Click to show internal directories.
Click to hide internal directories.