Skip to content

Commit

Permalink
arcbox secure string
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandro committed Jan 18, 2024
1 parent e3cff24 commit 134013f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion azure_jumpstart_arcbox/artifacts/dataController.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"type": "string"
},
"logAnalyticsPrimaryKey": {
"type": "string"
"type": "securestring"
},
"resourceTags": {
"type": "object"
Expand Down
1 change: 1 addition & 0 deletions azure_jumpstart_arcbox/terraform/modules/clientVm/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ variable "registry_password" {
type = string
description = "Registry password"
default = "registrySecret"
sensitive = true
}

variable "data_controller_name" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ variable "admin_username" {
variable "admin_ssh_key" {
type = string
description = "SSH Key for the Linux VM's"
sensitive = true
}

variable "virtual_network_name" {
Expand Down Expand Up @@ -65,6 +66,7 @@ variable "spn_client_id" {
variable "spn_client_secret" {
type = string
description = "Arc Service Principal client secret"
sensitive = true
}

variable "spn_tenant_id" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ variable "admin_username" {
variable "admin_ssh_key" {
type = string
description = "SSH Key for the Linux VM's."
sensitive = true
}

variable "virtual_network_name" {
Expand Down Expand Up @@ -64,6 +65,7 @@ variable "spn_client_id" {
variable "spn_client_secret" {
type = string
description = "Arc Service Principal client secret."
sensitive = true
}

variable "spn_tenant_id" {
Expand Down

0 comments on commit 134013f

Please sign in to comment.