-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
terraform modules
cmd human view
#36062
Open
Maed223
wants to merge
3
commits into
main
Choose a base branch
from
TF-19313/modules-cmd-human-view
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
internal/command/testdata/modules-nested-dependencies/.terraform/modules/modules.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"Modules": [ | ||
{ | ||
"Key": "", | ||
"Source": "", | ||
"Dir": "." | ||
}, | ||
{ | ||
"Key": "other", | ||
"Source": "./mods/other", | ||
"Dir": "mods/other" | ||
}, | ||
{ | ||
"Key": "test", | ||
"Source": "./mods/test", | ||
"Dir": "mods/test" | ||
}, | ||
{ | ||
"Key": "test.test2", | ||
"Source": "./test2", | ||
"Dir": "mods/test/test2" | ||
}, | ||
{ | ||
"Key": "test.test2.test3", | ||
"Source": "./test3", | ||
"Dir": "mods/test/test2/test3" | ||
} | ||
] | ||
} |
7 changes: 7 additions & 0 deletions
7
internal/command/testdata/modules-nested-dependencies/main.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module "test" { | ||
source = "./mods/test" | ||
} | ||
|
||
module "other" { | ||
source = "./mods/other" | ||
} |
5 changes: 5 additions & 0 deletions
5
internal/command/testdata/modules-nested-dependencies/mods/other/main.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
resource "test_instance" "test" { | ||
} | ||
output "myoutput" { | ||
value = "bar" | ||
} |
3 changes: 3 additions & 0 deletions
3
internal/command/testdata/modules-nested-dependencies/mods/test/main.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module "test2" { | ||
source = "./test2" | ||
} |
3 changes: 3 additions & 0 deletions
3
internal/command/testdata/modules-nested-dependencies/mods/test/test2/main.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module "test3" { | ||
source = "./test3" | ||
} |
5 changes: 5 additions & 0 deletions
5
internal/command/testdata/modules-nested-dependencies/mods/test/test2/test3/main.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
resource "test_instance" "test" { | ||
} | ||
output "myoutput" { | ||
value = "bar" | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,29 +3,34 @@ | |
|
||
package moduleref | ||
|
||
import "github.com/hashicorp/terraform/internal/modsdir" | ||
import ( | ||
"github.com/hashicorp/go-version" | ||
"github.com/hashicorp/terraform/internal/addrs" | ||
) | ||
|
||
const FormatVersion = "1.0" | ||
|
||
// ModuleRecord is the implementation of a module entry defined in the module | ||
// manifest that is declared by configuration. | ||
type Record struct { | ||
Key string `json:"key"` | ||
Source string `json:"source"` | ||
Version string `json:"version"` | ||
Key string | ||
Source addrs.ModuleSource | ||
Version *version.Version | ||
VersionConstraints version.Constraints | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. good addition! |
||
Children []*Record | ||
} | ||
|
||
// ModuleRecordManifest is the view implementation of module entries declared | ||
// in configuration | ||
type Manifest struct { | ||
FormatVersion string `json:"format_version"` | ||
Records []Record `json:"modules"` | ||
FormatVersion string | ||
Records []*Record | ||
} | ||
|
||
func (m *Manifest) addModuleEntry(entry modsdir.Record) { | ||
m.Records = append(m.Records, Record{ | ||
Key: entry.Key, | ||
Source: entry.SourceAddr, | ||
Version: entry.VersionStr, | ||
}) | ||
func (m *Manifest) addModuleEntry(entry *Record) { | ||
m.Records = append(m.Records, entry) | ||
} | ||
|
||
func (r *Record) addChild(child *Record) { | ||
r.Children = append(r.Children, child) | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed that this has one extra new line that the "providers" command. But that's okay. I kind of prefer two new lines than a single one.