-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .gitattributes file to repository (#166)
- Loading branch information
Showing
16 changed files
with
77 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
############################################################################### | ||
# Set default behavior to automatically normalize line endings. | ||
############################################################################### | ||
# Do not attempt any end-of-line conversion upon checkin or checkout. | ||
* -text | ||
############################################################################### | ||
# Convert these files to LF on checkin or checkout. | ||
############################################################################### | ||
*.[sS][hH] eol=LF | ||
*.[mM][dD] eol=LF | ||
*.[pP][sS]1 eol=LF | ||
*.[tT][fF] eol=LF | ||
*.[hH][cC][lL] eol=LF | ||
*.[yY][mM][lL] eol=LF | ||
*.[yY][aA][mM][lL] eol=LF | ||
*.[jJ][sS][oO][nN] eol=LF | ||
*.tf.example eol=LF | ||
*.json.example eol=LF | ||
*.tfvars.example eol=LF | ||
LICENSE eol=LF | ||
state-backend-template eol=LF | ||
############################################################################### | ||
# Convert these files to CRLF on checkin or checkout. | ||
############################################################################### | ||
############################################################################### | ||
# Define file name extensions for git lfs handling | ||
############################################################################### | ||
############################################################################### | ||
# behavior for image files | ||
# | ||
# image files are treated as binary by default. | ||
############################################################################### | ||
#*.jpg binary | ||
*.png binary | ||
#*.gif binary | ||
############################################################################### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,4 +27,6 @@ wildcard.key | |
temp | ||
terraform.log | ||
|
||
tfsec | ||
tfsec | ||
|
||
.vs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,3 @@ plugin "aws" { | |
version = "0.27.0" | ||
source = "github.com/terraform-linters/tflint-ruleset-aws" | ||
} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,3 @@ resource "kubernetes_namespace" "k8s_namespace" { | |
name = var.k8s_namespace | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
"Principal": "*" | ||
} | ||
] | ||
} | ||
} |
64 changes: 32 additions & 32 deletions
64
modules/simphera_aws_instance/templates/minio-policy.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
{ | ||
"Version" : "2012-10-17", | ||
"Statement" : [ | ||
{ | ||
"Effect" : "Allow", | ||
"Action" : [ | ||
"s3:GetBucketLocation" | ||
], | ||
"Resource" : [ | ||
"arn:aws:s3:::*" | ||
] | ||
}, | ||
{ | ||
"Effect" : "Allow", | ||
"Action" : [ | ||
"s3:PutObject", | ||
"s3:GetObject", | ||
"s3:ListBucket", | ||
"s3:DeleteObject", | ||
"s3:HeadBucket" | ||
], | ||
"Resource" : [ | ||
"arn:aws:s3:::${bucket}", | ||
"arn:aws:s3:::${bucket}/*" | ||
] | ||
}, | ||
{ | ||
"Effect" : "Allow", | ||
"Action" : "s3:ListAllMyBuckets", | ||
"Resource" : "*" | ||
} | ||
] | ||
} | ||
"Version" : "2012-10-17", | ||
"Statement" : [ | ||
{ | ||
"Effect" : "Allow", | ||
"Action" : [ | ||
"s3:GetBucketLocation" | ||
], | ||
"Resource" : [ | ||
"arn:aws:s3:::*" | ||
] | ||
}, | ||
{ | ||
"Effect" : "Allow", | ||
"Action" : [ | ||
"s3:PutObject", | ||
"s3:GetObject", | ||
"s3:ListBucket", | ||
"s3:DeleteObject", | ||
"s3:HeadBucket" | ||
], | ||
"Resource" : [ | ||
"arn:aws:s3:::${bucket}", | ||
"arn:aws:s3:::${bucket}/*" | ||
] | ||
}, | ||
{ | ||
"Effect" : "Allow", | ||
"Action" : "s3:ListAllMyBuckets", | ||
"Resource" : "*" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,3 @@ provider "helm" { | |
#} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
"Principal": "*" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ elasticsearch: | |
enabled: false | ||
|
||
nodeSelector: | ||
kubernetes.io/os: linux | ||
kubernetes.io/os: linux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,6 @@ | |
"Effect": "Allow", | ||
"Resource": "*", | ||
"Sid": "" | ||
} | ||
} | ||
] | ||
} | ||
} |