-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.tf
38 lines (32 loc) · 805 Bytes
/
data.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
data "azurerm_client_config" "current_client" {}
data "azuread_client_config" "current_client" {}
data "azurerm_storage_account_sas" "blob_container_sas"{
connection_string = module.dsc_storage.storage_account_connection_string
https_only = true
start = var.sas_start
expiry = var.sas_expiry
resource_types {
service = false
container = true
object = true
}
services {
blob = true
queue = false
table = false
file = false
}
permissions {
read = true
write = false
delete = false
list = true
add = false
create = false
update = false
process = false
tag = false
filter = false
}
depends_on = [ module.dsc_storage ]
}