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
|
|
@ -1,7 +1,12 @@
|
|||
variable "user_email" {
|
||||
type = string
|
||||
}
|
||||
|
||||
resource "oci_identity_user" "this" {
|
||||
compartment_id = local.child_compartment_id
|
||||
description = "The user for Terraform to use"
|
||||
name = "terraform"
|
||||
email = var.user_email
|
||||
}
|
||||
|
||||
locals {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue