Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azurerm_virtual_machine to use Lists instead of Sets #426

Merged
merged 23 commits into from
Oct 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
8e58f67
converting plan
tombuildsstuff Oct 13, 2017
6b04776
`storage_image_reference` Set -> List
tombuildsstuff Oct 13, 2017
c7b3837
Refactoring `storage_os_disk` from a Set to a List
tombuildsstuff Oct 13, 2017
8079582
Fixing the validation for `storage_data_disk`
tombuildsstuff Oct 13, 2017
0e949de
Moving OS Profile from a Set to a List
tombuildsstuff Oct 13, 2017
91aad90
Sets to Lists for `os_profile_windows_config`
tombuildsstuff Oct 13, 2017
2b0e761
Migrating `os_profile_linux_config` / `network_interface_ids` from Se…
tombuildsstuff Oct 13, 2017
f5b71d3
Removing the final vm set
tombuildsstuff Oct 13, 2017
96ff9a8
Changing OSProfile back to a Set
tombuildsstuff Oct 13, 2017
7862954
Removing the extra validation from the data_disk list
tombuildsstuff Oct 16, 2017
5b8a07f
Fixing the OS Disk Type Conflict test
tombuildsstuff Oct 16, 2017
20b4791
Removing the Windows Licence test since it doesn't work in our subscr…
tombuildsstuff Oct 16, 2017
1a1708f
Fixing up the os_profile_linux_config tests
tombuildsstuff Oct 16, 2017
807ba0a
Adding a conflicts reference between the Windows & Linux OS profiles
tombuildsstuff Oct 16, 2017
6b2e219
Adding a check that either a Windows or Linux OS Profile is specified.
tombuildsstuff Oct 16, 2017
ee59292
Converting `os_profile_windows_config` back to a set
tombuildsstuff Oct 16, 2017
25875b8
Adding a test with multiple NIC's
tombuildsstuff Oct 16, 2017
53f27e4
Switching Storage Image Ref back to a set / setting the OS type
tombuildsstuff Oct 16, 2017
a4c40b0
Adding a test covering disk renumbering. Fixes #20
tombuildsstuff Oct 16, 2017
bfca0d6
Checking for the Managed Disk's ID before accessing it. Fixes #81
tombuildsstuff Oct 16, 2017
309c22b
Checking to see if the os_profile is nil before determining the hash …
tombuildsstuff Oct 16, 2017
962459b
Removing the unused test
tombuildsstuff Oct 17, 2017
fcb3c0b
Making `enable_blob_encryption` and `enable_file_encryption` computed
tombuildsstuff Oct 17, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions azurerm/resource_arm_storage_account.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,13 @@ func resourceArmStorageAccount() *schema.Resource {
"enable_blob_encryption": {
Type: schema.TypeBool,
Optional: true,
Computed: true,
},

"enable_file_encryption": {
Type: schema.TypeBool,
Optional: true,
Computed: true,
},

"enable_https_traffic_only": {
Expand Down
Loading