mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat(oci): add email to new user
This commit is contained in:
parent
ec8ed664ff
commit
a55e60260a
4 changed files with 14 additions and 5 deletions
|
|
@ -20,6 +20,10 @@ variable "oci_compartment_bootstrap_fingerprint" {
|
|||
type = string
|
||||
}
|
||||
|
||||
variable "oci_compartment_bootstrap_user_email" {
|
||||
type = string
|
||||
}
|
||||
|
||||
# https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformgettingstarted.htm
|
||||
# https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm
|
||||
provider "oci" {
|
||||
|
|
@ -36,6 +40,7 @@ module "oci_compartment_bootstrap" {
|
|||
source = "./oci_compartment_bootstrap"
|
||||
|
||||
tenancy_ocid = var.oci_compartment_bootstrap_tenancy_ocid
|
||||
user_email = var.oci_compartment_bootstrap_user_email
|
||||
|
||||
providers = {
|
||||
oci = oci.oci_root
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue