File tree Expand file tree Collapse file tree 3 files changed +13
-12
lines changed
Expand file tree Collapse file tree 3 files changed +13
-12
lines changed Original file line number Diff line number Diff 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
9697Advanced::
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
Original file line number Diff line number Diff 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
8490variable "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-
114114variable "tenants_dir_path" {
115115 default = " ./tenants"
116116 type = string
Original file line number Diff line number Diff 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
8490variable "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-
121121variable "tenants_dir_path" {
122122 default = " ./tenants"
123123 type = string
You can’t perform that action at this time.
0 commit comments