chore: capitalize Usage: terraform [global options] <subcommand> [args]
The available commands for execution are listed below. The primary workflow commands are given first, followed by less common or more advanced commands. Main commands: init Prepare your working directory for other commands validate Check whether the configuration is valid plan Show changes required by the current configuration apply Create or update infrastructure destroy Destroy previously-created infrastructure All other commands: console Try Terraform expressions at an interactive command prompt fmt Reformat your configuration in the standard style force-unlock Release a stuck lock on the current workspace get Install or upgrade remote Terraform modules graph Generate a Graphviz graph of the steps in an operation import Associate existing infrastructure with a Terraform resource login Obtain and save credentials for a remote host logout Remove locally-stored credentials for a remote host output Show output values from your root module providers Show the providers required for this configuration refresh Update the state to match remote systems show Show the current state or a saved plan state Advanced state management taint Mark a resource instance as not fully functional test Experimental support for module integration testing untaint Remove the 'tainted' state from a resource instance version Show the current Terraform version workspace Workspace management Global options (use these before the subcommand, if any): -chdir=DIR Switch to a different working directory before executing the given subcommand. -help Show this help output, or the help for a specified subcommand. -version An alias for the "version" subcommand. in output for consistencymain
parent
6f44cf1b0a
commit
0a1ed7d01e
|
@ -201,7 +201,7 @@ func (c Console) writeSummary(analysis *analyser.Analysis) {
|
|||
if analysis.Summary().TotalManaged > 0 {
|
||||
managed = warningWriter.Sprintf("%d", analysis.Summary().TotalManaged)
|
||||
}
|
||||
fmt.Printf(" - %s resource(s) managed by terraform\n", managed)
|
||||
fmt.Printf(" - %s resource(s) managed by Terraform\n", managed)
|
||||
|
||||
drifted := successWriter.Sprintf("0")
|
||||
if analysis.Summary().TotalDrifted > 0 {
|
||||
|
|
|
@ -23,7 +23,7 @@ Found changed resources:
|
|||
- a: "oldValue" => <nil>
|
||||
Found 10 resource(s)
|
||||
- 20% coverage
|
||||
- 2 resource(s) managed by terraform
|
||||
- 2 resource(s) managed by Terraform
|
||||
- 2/2 resource(s) out of sync with Terraform state
|
||||
- 4 resource(s) not managed by Terraform
|
||||
- 4 resource(s) found in a Terraform state but missing on the cloud provider
|
||||
|
|
|
@ -8,7 +8,7 @@ Found changed resources:
|
|||
~ struct.0.string: "one" => "two" (computed)
|
||||
Found 1 resource(s)
|
||||
- 100% coverage
|
||||
- 1 resource(s) managed by terraform
|
||||
- 1 resource(s) managed by Terraform
|
||||
- 1/1 resource(s) out of sync with Terraform state
|
||||
- 0 resource(s) not managed by Terraform
|
||||
- 0 resource(s) found in a Terraform state but missing on the cloud provider
|
||||
|
|
|
@ -6,7 +6,7 @@ Found resources not covered by IaC:
|
|||
- duysgkfdjfdgfhd
|
||||
Found 3 resource(s)
|
||||
- 33% coverage
|
||||
- 1 resource(s) managed by terraform
|
||||
- 1 resource(s) managed by Terraform
|
||||
- 0/1 resource(s) out of sync with Terraform state
|
||||
- 1 resource(s) not managed by Terraform
|
||||
- 1 resource(s) found in a Terraform state but missing on the cloud provider
|
||||
|
|
|
@ -30,7 +30,7 @@ Found changed resources:
|
|||
|
||||
Found 2 resource(s)
|
||||
- 100% coverage
|
||||
- 2 resource(s) managed by terraform
|
||||
- 2 resource(s) managed by Terraform
|
||||
- 2/2 resource(s) out of sync with Terraform state
|
||||
- 0 resource(s) not managed by Terraform
|
||||
- 0 resource(s) found in a Terraform state but missing on the cloud provider
|
||||
|
|
|
@ -13,7 +13,7 @@ Found changed resources:
|
|||
~ Name: "" => "resource with diff"
|
||||
Found 3 resource(s)
|
||||
- 33% coverage
|
||||
- 1 resource(s) managed by terraform
|
||||
- 1 resource(s) managed by Terraform
|
||||
- 1/1 resource(s) out of sync with Terraform state
|
||||
- 1 resource(s) not managed by Terraform
|
||||
- 1 resource(s) found in a Terraform state but missing on the cloud provider
|
||||
|
|
|
@ -3,6 +3,6 @@ Found resources not covered by IaC:
|
|||
- unmanaged-id-1
|
||||
Found 1 resource(s)
|
||||
- 0% coverage
|
||||
- 0 resource(s) managed by terraform
|
||||
- 0 resource(s) managed by Terraform
|
||||
- 1 resource(s) not managed by Terraform
|
||||
- 0 resource(s) found in a Terraform state but missing on the cloud provider
|
||||
|
|
Loading…
Reference in New Issue