Skip to content

Commit f3b89ad

Browse files
committed
teams modules + examples
1 parent df0aeef commit f3b89ad

File tree

13 files changed

+125
-51
lines changed

13 files changed

+125
-51
lines changed

docs/index.md docs/README.md

+8-47
Original file line numberDiff line numberDiff line change
@@ -15,55 +15,16 @@ The Codefresh Provider can be used to configure [Codefresh](https://codefresh.io
1515
The Codefresh API requires the [authentication key](https://codefresh.io/docs/docs/integrations/codefresh-api/#authentication-instructions) to authenticate.
1616
The key can be passed either as provider's attribute or as environment variable - `CODEFRESH_API_KEY`.
1717

18-
## Example Usage
19-
20-
```hcl
21-
provider "codefresh" {
22-
token = "xxxxxxxxx.xxxxxxxxxx"
23-
}
24-
25-
resource "codefresh_project" "project" {
26-
name = "myproject"
27-
28-
tags = [
29-
"production",
30-
"docker",
31-
]
32-
33-
variables = {
34-
myProjectVar = "value"
35-
}
36-
}
37-
38-
resource "codefresh_pipeline" "pipeline" {
39-
lifecycle {
40-
ignore_changes = [
41-
revision
42-
]
43-
}
44-
45-
name = "${codefresh_project.project.name}/mypipeline"
46-
47-
spec {
48-
49-
spec_template {
50-
repo = "my-github-account/my-repository"
51-
path = "./codefresh.yml"
52-
revision = "master"
53-
context = "github"
54-
}
55-
56-
variables = {
57-
goVersion = "1.13"
58-
release = "true"
59-
}
60-
}
61-
}
62-
```
63-
6418
## Argument Reference
6519

6620
The following arguments are supported:
6721

6822
- `token` - (Optional) The client API token. This can also be sourced from the `CODEFRESH_API_KEY` environment variable.
69-
- `api_url` -(Optional) Default value - https://g.codefresh.io/api.
23+
- `api_url` -(Optional) Default value - https://g.codefresh.io/api.
24+
25+
## Recommendation for creation Accounts, Users, Teams, Permissions
26+
* create users and accounts using [accounts_users module](modules/accounts_users.md) and Codefresh Admin token
27+
* Create and save in tf state api_keys using [accounts_token module](modules/accounts_token.md)
28+
* Create teams using [teams module](modules/teams.md)
29+
* Create permissions - (see example)[../examplea/permisssions)
30+

docs/modules/account_token.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,11 @@ resource "codefresh_permission" "permission" {
4141
4242
```
4343

44-
### [Example account-tokens](../../examples/account_tokens)
44+
### [Example account-tokens](../../examples/account_tokens)
45+
Output example:
46+
```
47+
"account_tokens": {
48+
"acc1": "1xxxxxxxxxxxxxxxxx.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1",
49+
"acc2": "2xxxxxxxxxxxxxxxxx.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2"
50+
}
51+
```

docs/modules/permissions.md

-2
This file was deleted.

docs/modules/teams.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
# module teams
1+
# module teams
2+
3+
[teams source](../../tf_modules/teams)
4+
[teams example](../../examples/teams)

examples/permissions/main.tf

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
data "codefresh_team" "admins" {
2+
name = "admins"
3+
}
4+
5+
data "codefresh_team" "developers" {
6+
name = "developers"
7+
}
8+
9+
resource "codefresh_permission" "dev_pipeline" {
10+
for_each = toset(["run", "create", "update", "delete", "read"])
11+
team = data.codefresh_team.developers.id
12+
action = each.value
13+
resource = "pipeline"
14+
tags = [ "dev", "untagged"]
15+
}
16+
17+
resource "codefresh_permission" "admin_pipeline" {
18+
for_each = toset(["run", "create", "update", "delete", "read", "approve"])
19+
team = data.codefresh_team.admins.id
20+
action = each.value
21+
resource = "pipeline"
22+
tags = [ "production", "*"]
23+
}

examples/permissions/provider.tf

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
provider "codefresh" {
2+
api_url = var.api_url
3+
token = var.token # If token isn't set the provider expects the $CODEFRESH_API_KEY env variable
4+
}

examples/permissions/terraform.tfvars

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
api_url = "https://my-codefresh.example.com/api"

examples/permissions/vars.tf

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
variable api_url {
2+
type = string
3+
}
4+
5+
variable token {
6+
type = string
7+
default = ""
8+
}

examples/teams/main.tf

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
variable api_url {
2+
type = string
3+
}
4+
5+
variable token {
6+
type = string
7+
default = ""
8+
}
9+
provider "codefresh" {
10+
api_url = var.api_url
11+
token = var.token
12+
}
13+
14+
variable teams {
15+
type = map(any)
16+
}
17+
18+
module "teams" {
19+
source = "../../tf_modules/teams"
20+
teams = var.teams
21+
}

examples/teams/terraform.tfvars

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
api_url = "https://my-codefresh.example.com/api"
2+
token = ""
3+
4+
teams = {
5+
developers = ["user1", "user3"]
6+
managers = ["user3", "user2"]
7+
}

tf_modules/teams/main.tf

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
data "codefresh_current_account" "acc" {
2+
3+
}
4+
5+
locals {
6+
user_ids = tomap({
7+
for u in data.codefresh_current_account.acc.users:
8+
u.name => u.id
9+
})
10+
11+
}
12+
13+
resource "codefresh_team" "teams" {
14+
for_each = var.teams
15+
name = each.key
16+
17+
users = [for u in each.value: lookup(local.user_ids, u)]
18+
}

tf_modules/teams/output.tf

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
output "users" {
2+
value = local.user_ids
3+
}
4+
output "teams" {
5+
value = codefresh_team.teams
6+
}

tf_modules/teams/vars.tf

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# variable api_url {
2+
# type = string
3+
# }
4+
5+
# variable token {
6+
# type = string
7+
# default = ""
8+
# }
9+
10+
# teams map[team_name]usersList
11+
# {
12+
# developers = ["user1", "user3"]
13+
# managers = ["user3", "user2"]
14+
# }
15+
variable teams {
16+
type = map(any)
17+
}

0 commit comments

Comments
 (0)