Skip to content

Commit 3a3a4a2

Browse files
authored
Merge pull request #132 from PerfectThymeTech/marvinbuss/add_git_baseline
Add git baseline
2 parents ef87fd4 + 1bd6867 commit 3a3a4a2

File tree

3 files changed

+29
-27
lines changed

3 files changed

+29
-27
lines changed

.gitattributes

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Basic .gitattributes for a python repo.
2+
3+
# Source files
4+
# ============
5+
*.pxd text diff=python
6+
*.py text diff=python
7+
*.py3 text diff=python
8+
*.pyw text diff=python
9+
*.pyx text diff=python
10+
*.pyz text diff=python
11+
*.pyi text diff=python
12+
13+
# Binary files
14+
# ============
15+
*.db binary
16+
*.p binary
17+
*.pkl binary
18+
*.pickle binary
19+
*.pyc binary export-ignore
20+
*.pyo binary export-ignore
21+
*.pyd binary
22+
23+
# Jupyter notebook
24+
*.ipynb text eol=lf
25+
26+
# Note: .db, .p, and .pkl files are associated
27+
# with the python modules ``pickle``, ``dbm.*``,
28+
# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
29+
# (among others).
File renamed without changes.

code/infra/storage.tf

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -52,33 +52,6 @@ resource "azurerm_storage_account" "storage" {
5252
shared_access_key_enabled = false # Required to be set to 'true' when creating a Windows host
5353
}
5454

55-
# resource "azurerm_storage_management_policy" "storage_management_policy" {
56-
# storage_account_id = azurerm_storage_account.storage.id
57-
58-
# rule {
59-
# name = "default"
60-
# enabled = true
61-
# actions {
62-
# base_blob {
63-
# tier_to_cool_after_days_since_modification_greater_than = 360
64-
# # delete_after_days_since_modification_greater_than = 720
65-
# }
66-
# snapshot {
67-
# change_tier_to_cool_after_days_since_creation = 180
68-
# delete_after_days_since_creation_greater_than = 360
69-
# }
70-
# version {
71-
# change_tier_to_cool_after_days_since_creation = 180
72-
# delete_after_days_since_creation = 360
73-
# }
74-
# }
75-
# filters {
76-
# blob_types = ["blockBlob"]
77-
# prefix_match = []
78-
# }
79-
# }
80-
# }
81-
8255
data "azurerm_monitor_diagnostic_categories" "diagnostic_categories_storage" {
8356
resource_id = azurerm_storage_account.storage.id
8457
}

0 commit comments

Comments
 (0)