-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add domain name to data source
added domain name to data source so that data can be retrieve by name or domain_id Signed-off-by: Jared Burns <[email protected]>
- Loading branch information
1 parent
94a68df
commit f22fd50
Showing
6 changed files
with
134 additions
and
57 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
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,19 +1,21 @@ | ||
variable "sddc_manager_host" { | ||
description = "The fully qualified domain name of the SDDC Manager instance." | ||
} | ||
|
||
variable "sddc_manager_username" { | ||
description = "Username used to authenticate against an SDDC Manager instance" | ||
default = "" | ||
description = "The username to authenticate to the SDDC Manager instance." | ||
sensitive = true | ||
} | ||
|
||
variable "sddc_manager_password" { | ||
description = "Password used to authenticate against an SDDC Manager instance" | ||
default = "" | ||
description = "The password to authenticate to the SDDC Manager instance." | ||
sensitive = true | ||
} | ||
|
||
variable "sddc_manager_host" { | ||
description = "Fully qualified domain name of an SDDC Manager instance" | ||
default = "" | ||
variable "domain_id" { | ||
description = "The ID of the workload domain." | ||
} | ||
|
||
variable "vcf_domain_id" { | ||
description = "Id of the domain that is to be used as a data source. Note: management domain ID can be used to refer to some of it's attributes" | ||
default = "" | ||
variable "domain_name" { | ||
description = "The name of the workload domain." | ||
} |
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