Skip to content
This repository was archived by the owner on Aug 15, 2022. It is now read-only.

Commit 7159d78

Browse files
author
Cihangir SAVAS
committed
Config: remove access keys
1 parent a6e186c commit 7159d78

29 files changed

Lines changed: 28 additions & 1425 deletions

File tree

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mongourl = "dev:k9lc4G1k32nyD72@iad-mongos0.objectrocket.com:15184/koding"
1+
mongourl = ""
22
dryrun = true
33
debug = true
44
hostedzone = "koding.io"
@@ -8,14 +8,14 @@ interval = "6h"
88
url = "https://hooks.slack.com/services/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"
99

1010
[postgres]
11-
host = "prod0.cfbuweg6pdxe.us-east-1.rds.amazonaws.com"
11+
host = ""
1212
port = 5432
13-
username = "socialapplication"
14-
password = "socialapplication"
15-
dbname = "social"
13+
username = ""
14+
password = ""
15+
dbname = ""
1616

1717
[aws]
18-
accesskey = "AKIAJFKDHRJ7Q5G4MOUQ"
19-
secretkey = "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"
18+
accesskey = ""
19+
secretkey = ""
2020

2121

go/src/koding/kites/kloud/docs/aws.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ region. Copy the AMI ID that has "Base-koding-3gb" or a description saying
7272

7373
Create it with the packer command:
7474

75-
AWS_ACCESS_KEY=AKIAIKAVWAYVSMCW4Z5A AWS_SECRET_KEY=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 packer build koding-ireland.json
75+
AWS_ACCESS_KEY="" AWS_SECRET_KEY="" packer build koding-ireland.json
7676

7777
The access and secret key should be a valid within the "koding-vms" account.
7878

go/src/koding/kites/kloud/main_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -711,8 +711,8 @@ func createUser(username string) (*singleUser, error) {
711711
PublicKey: credPublicKey,
712712
OriginId: accountId,
713713
Meta: bson.M{
714-
"access_key": "AKIAJTDKW5IFUUIWVNAA",
715-
"secret_key": "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",
714+
"access_key": "",
715+
"secret_key": "",
716716
"region": "ap-northeast-1",
717717
},
718718
}
@@ -1145,8 +1145,8 @@ func listenEvent(args kloud.EventArgs, desiredState machinestate.State, remote *
11451145

11461146
func kodingProvider() *koding.Provider {
11471147
auth := aws.Auth{
1148-
AccessKey: "AKIAJFKDHRJ7Q5G4MOUQ",
1149-
SecretKey: "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",
1148+
AccessKey: "",
1149+
SecretKey: "",
11501150
}
11511151

11521152
mongoURL := os.Getenv("KLOUD_MONGODB_URL")
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mongourl = "dev:k9lc4G1k32nyD72@iad-mongos0.objectrocket.com:15184/koding"
2-
accesskey = "AKIAJFKDHRJ7Q5G4MOUQ"
3-
secretkey = "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"
1+
mongourl = ""
2+
accesskey = ""
3+
secretkey = ""
44

55

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mongourl = "dev:k9lc4G1k32nyD72@iad-mongos0.objectrocket.com:15184/koding"
2-
accesskey = "AKIAJFKDHRJ7Q5G4MOUQ"
3-
secretkey = "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"
1+
mongourl = ""
2+
accesskey = ""
3+
secretkey = ""
44

55

go/src/koding/kites/release-kite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
from boto.s3.key import Key
1818

1919

20-
AWS_KEY = 'AKIAJSUVKX6PD254UGAA'
21-
AWS_SECRET = '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'
20+
AWS_KEY = ''
21+
AWS_SECRET = ''
2222

2323

2424
def main():

go/src/koding/kites/terraformer/kite_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ import (
1515
)
1616

1717
var variables = map[string]string{
18-
"aws_access_key": "AKIAJTDKW5IFUUIWVNAA",
18+
"aws_access_key": "",
19+
"aws_secret_key": "",
1920
"aws_region": "sa-east-1",
20-
"aws_secret_key": "BKULK7pWB2crKtBafYnfcPhh7Ak+iR/ChPfkvrLC",
2121
"cidr_block": "10.0.0.0/16",
2222
"environment_name": "kodingterraformtest",
2323
}

go/src/koding/oskite/s3.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ const (
2626
var (
2727
s3store = s3.New(
2828
aws.Auth{
29-
AccessKey: "AKIAJI6CLCXQ73BBQ2SQ",
30-
SecretKey: "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",
29+
AccessKey: "",
30+
SecretKey: "",
3131
},
3232
aws.USEast,
3333
)

go/src/koding/tools/s3utils/s3utils.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
// TODO: read from config
99
var s3store = s3.New(
1010
aws.Auth{
11-
AccessKey: "AKIAJI6CLCXQ73BBQ2SQ",
12-
SecretKey: "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",
11+
AccessKey: "",
12+
SecretKey: "",
1313
},
1414
aws.USEast,
1515
)

install/Dockerfile

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)