-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
59 lines (59 loc) · 1.38 KB
/
variables.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
locals {
repos = {
abc-rb = {
description = "My submissions",
homepage_url = "https://atcoder.jp/contests/",
topics = []
},
ansible-osx = {
description = "Configure my macOS development environment",
homepage_url = "",
topics = [
"ansible",
"macos"
]
},
contributions = {
description = "count up GitHub contributions by repositories",
homepage_url = "",
topics = []
},
kubectl-wait-sts-plugin = {
description = "kubectl wait-sts plugin makes it possible to wait until statefulset gets ready",
homepage_url = "",
topics = [
"kubectl",
"kubectl-plugins",
"kubernetes"
]
},
my-github-configuration = {
description = "Configure github.com/oke-py with Terraform",
homepage_url = "",
topics = [
"github",
"terraform"
]
},
npm-audit-action = {
description = "GitHub Action to run `npm audit`",
homepage_url = "",
topics = [
"github-action",
"npm",
"security",
"vulnerability"
]
},
programming-contest-environment = {
description = "",
homepage_url = "",
topics = []
},
zenn-content = {
description = "",
homepage_url = "https://zenn.dev/oke_py",
topics = []
},
}
}