You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,28 @@
1
+
## v1.0.0 (2024-10-22)
2
+
3
+
The following changes have been made for all sample mods:
4
+
5
+
_Breaking changes_
6
+
7
+
- Flowpipe v1.0.0 is now required. For a full list of CLI changes, please see the [Flowpipe v1.0.0 CHANGELOG](https://flowpipe.io/changelog/flowpipe-cli-v1-0-0).
8
+
- In Flowpipe configuration files (`.fpc`), `credential` and `credential_import` resources have been renamed to `connection` and `connection_import` respectively.
9
+
- Updated the following param types:
10
+
-`approvers`: `list(string)` to `list(notifier)`.
11
+
-`database`: `string` to `connection.steampipe`.
12
+
-`notifier`: `string` to `notifier`.
13
+
- Updated the following variable types:
14
+
-`approvers`: `list(string)` to `list(notifier)`.
15
+
-`database`: `string` to `connection.steampipe`.
16
+
-`notifier`: `string` to `notifier`.
17
+
- Renamed `cred` param to `conn` and updated its type from `string` to `conn`.
18
+
19
+
_Enhancements_
20
+
21
+
- Added `sample` to each mod's categories.
22
+
- Updated the following pipeline tags:
23
+
-`type = "featured"` to `recommended = "true"`
24
+
- Added `format` to params and variables that use multiline and JSON strings.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ Run a pipeline:
48
48
flowpipe pipeline run http_list_pagination
49
49
```
50
50
51
-
Some mods require [credentials](https://flowpipe.io/docs/run/credentials) and [variables](https://flowpipe.io/docs/build/mod-variables), please see each mod's README.md for specific instructions.
51
+
Some mods require [connections](https://flowpipe.io/docs/run/connections) and [variables](https://flowpipe.io/docs/build/mod-variables), please see each mod's README.md for specific instructions.
Copy file name to clipboardExpand all lines: access_management/add_new_user_in_microsoft_office_365/README.md
+17-14Lines changed: 17 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ cd access_management/add_new_user_in_microsoft_office_365
24
24
flowpipe mod install
25
25
```
26
26
27
-
## Credentials
27
+
## Connections
28
28
29
29
By default, the following environment variables will be used for authentication:
30
30
@@ -33,14 +33,14 @@ By default, the following environment variables will be used for authentication:
33
33
-`JIRA_USER`
34
34
-`TEAMS_ACCESS_TOKEN`
35
35
36
-
You can also create `credential` resources in configuration files:
36
+
You can also create `connection` resources in configuration files:
37
37
38
38
```sh
39
39
vi ~/.flowpipe/config/jira.fpc
40
40
```
41
41
42
42
```hcl
43
-
credential "jira" "default" {
43
+
connection "jira" "default" {
44
44
base_url = "https://test.atlassian.net/"
45
45
api_token = "ATATT3........."
46
46
username = "abc@email.com"
@@ -52,26 +52,29 @@ vi ~/.flowpipe/config/teams.fpc
52
52
```
53
53
54
54
```hcl
55
-
credential "teams" "default" {
55
+
connection "teams" "default" {
56
56
access_token = "<access_token>"
57
57
}
58
58
```
59
59
60
-
For more information on credentials in Flowpipe, please see [Managing Credentials](https://flowpipe.io/docs/run/credentials).
60
+
For more information on connections in Flowpipe, please see [Managing Connections](https://flowpipe.io/docs/run/connections).
61
61
62
62
## Usage
63
63
64
64
Run the pipeline and specify the `teams_display_name`, `teams_account_enabled`, `teams_mail_nickname`, `teams_user_principal_name`, `teams_password`, `teams_license_sku_ids`, `jira_project_key`, `teams_team_id` and `teams_message` pipeline arguments:
65
65
66
66
```sh
67
67
flowpipe pipeline run add_new_user_in_microsoft_office_365 \
0 commit comments