Skip to content

Commit 39c1113

Browse files
committed
add new variable to readme; adjust position
1 parent 3639fe3 commit 39c1113

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

m365/README.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ Optional::
9393
`tags` (map(string)) [default={}]::: Tags to apply to all resources created. Application is done via policies
9494
`serial_number` (string) [default=01]::: Increment by 1 when re-provisioning with the same resource group name
9595
`image_path` (string) [default=./cisa_logo.png]::: Path to image used for app logo. Displayed in Azure console on installed tenants
96+
`output_all_files` (bool) [default=False]::: If true, will output all files generated by ScubaGear instead of just the ScubaResults.json
9697
Advanced::
9798
`create_app` (bool) [default=True]::: If true, the app will be created. If false, the app will be imported
9899
`prefix_override` (string) [default=None]::: Prefix for resource names. If null, one will be generated from app_name

m365/terraform/env/example/variables.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ variable "image_path" {
7979
description = "Path to image used for app logo. Displayed in Azure console on installed tenants"
8080
}
8181

82+
variable "output_all_files" {
83+
default = false
84+
type = bool
85+
description = "If true, will output all files generated by ScubaGear instead of just the ScubaResults.json"
86+
}
87+
8288
### ADVANCED ###
8389

8490
variable "create_app" {
@@ -105,12 +111,6 @@ variable "output_storage_container_url" {
105111
description = "If not null, output container to put results in (must give permissions to service account). Otherwise by default will create storage container. Expect an https url pointing to a container"
106112
}
107113

108-
variable "output_all_files" {
109-
default = false
110-
type = bool
111-
description = "If true, will output all files generated by ScubaGear instead of just the ScubaResults.json"
112-
}
113-
114114
variable "tenants_dir_path" {
115115
default = "./tenants"
116116
type = string

m365/terraform/variables.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ variable "image_path" {
7979
description = "Path to image used for app logo. Displayed in Azure console on installed tenants"
8080
}
8181

82+
variable "output_all_files" {
83+
default = false
84+
type = bool
85+
description = "If true, will output all files generated by ScubaGear instead of just the ScubaResults.json"
86+
}
87+
8288
### ADVANCED ###
8389

8490
variable "create_app" {
@@ -112,12 +118,6 @@ variable "output_storage_container_sas" {
112118
sensitive = true
113119
}
114120

115-
variable "output_all_files" {
116-
default = false
117-
type = bool
118-
description = "If true, will output all files generated by ScubaGear instead of just the ScubaResults.json"
119-
}
120-
121121
variable "tenants_dir_path" {
122122
default = "./tenants"
123123
type = string

0 commit comments

Comments
 (0)