Skip to content

Saas 7709 v2 #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 32 commits into from
Jul 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
e35eabc
Add 'codefresh_team' resource
palson-cf Jul 2, 2020
dfc2ca1
Add resource_team.go
palson-cf Jul 7, 2020
a24bec6
Add team.go
palson-cf Jul 9, 2020
358739a
Fix teams
palson-cf Jul 9, 2020
a15edd2
Add account resource
palson-cf Jul 10, 2020
9530d35
Add api_key resource
palson-cf Jul 13, 2020
4b95aa1
Add account doc
palson-cf Jul 13, 2020
ee58331
Add api-key doc
palson-cf Jul 13, 2020
4c5fc24
Add team doc
palson-cf Jul 13, 2020
5bd5cae
Added IDP resource
palson-cf Jul 14, 2020
e110d81
Add data users
palson-cf Jul 15, 2020
76379ac
Update data users
palson-cf Jul 15, 2020
5ed40b2
Split data users to user and users
palson-cf Jul 15, 2020
9e9f1ae
Add user data docs
palson-cf Jul 15, 2020
bf618e4
Add account_admins resource
palson-cf Jul 17, 2020
c5490af
Add user resource
palson-cf Jul 17, 2020
44f6743
provider-sdk-v2 + featuresFlag
Jul 22, 2020
38499ae
feature-flags
kosta709 Jul 22, 2020
afaccea
idp-1
kosta709 Jul 23, 2020
11f52ba
user-idp
kosta709 Jul 25, 2020
3e20eeb
tf_module access_control and examples
kosta709 Jul 26, 2020
d9f6a13
tf_module access_control and examples
kosta709 Jul 26, 2020
80321de
tf_module access_control and examples
kosta709 Jul 26, 2020
b2a7e54
api-ket no extra-user
kosta709 Jul 27, 2020
c294d76
team-data
kosta709 Jul 27, 2020
612aa5e
resource_permission draft
kosta709 Jul 27, 2020
db2d397
resource_permission - done
kosta709 Jul 27, 2020
c6bc1cc
doc refactoring
kosta709 Jul 27, 2020
16485e9
change_account module
kosta709 Jul 27, 2020
e2627f1
current account
kosta709 Jul 28, 2020
df0aeef
data.current_account
kosta709 Jul 28, 2020
f3b89ad
teams modules + examples
kosta709 Jul 28, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
terraform-provider-codefresh
dist/

**/.terraform
**/terraform.tfstate
**/terraform.tfstate.backup
tests/
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ The provider is still under development, and can be used as a terraform [third-p

## Requirements

- [Terraform](https://www.terraform.io/downloads.html) 0.11+ ;
- [Terraform](https://www.terraform.io/downloads.html) 0.12+ ;
- [Go](https://golang.org/doc/install) 1.12+ (to build the provider plugin).

## Download Provider
Download and extract terraform-provider-codefresh from [releases](https://github.com/codefresh-io/terraform-provider-codefresh/releases)

## Building the Provider

```sh
Expand All @@ -24,7 +27,11 @@ For Linux OS it can be:
- _~/.terraform.d/plugins/linux\_amd64_
- _./terraform.d/plugins/linux\_amd64_. The relative path in your Terraform project.

To configure codefresh provider:
## [Documentations](./docs)

## [Examples](./examples)

## To configure codefresh provider:

```hcl
provider "codefresh" {
Expand Down
Loading