-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #379 from vmware/mshobha/fix-provisioner-list
Fix Provisioner List Data read
- Loading branch information
Showing
6 changed files
with
129 additions
and
59 deletions.
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
10 changes: 7 additions & 3 deletions
10
examples/data-sources/provisioner/data_source_provisioner.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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
# Read Tanzu Mission Control provisioner : fetch the given provisioner details | ||
data "tanzu-mission-control_provisioner" "read_provisioner" { | ||
name = "test-provisioner" # Optional | ||
management_cluster = "eks" # Required | ||
provisioners { | ||
name = "test-provisioner" # Optional | ||
management_cluster = "eks" # Required | ||
} | ||
} | ||
|
||
# Read Tanzu Mission Control provisioner : fetch all the provisioner details for the given management cluster | ||
data "tanzu-mission-control_provisioner" "read_provisioner" { | ||
management_cluster = "eks" # Required | ||
provisioners { | ||
management_cluster = "eks" # Required | ||
} | ||
} |
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
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