-
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 name option to
d/domain
(#228)
Updated `d/vcf_domain` to support `name` alongside the existing `domain_id`. Signed-off-by: Jared Burns <[email protected]> Co-authored-by: Ryan Johnson <[email protected]>
- Loading branch information
1 parent
bf1b271
commit 6aa3067
Showing
6 changed files
with
166 additions
and
90 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,22 @@ | ||
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." | ||
name = "sfo-w01" | ||
} |
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
Oops, something went wrong.