@@ -41,18 +41,19 @@ func Provider() *schema.Provider {
41
41
},
42
42
},
43
43
DataSourcesMap : map [string ]* schema.Resource {
44
- "codefresh_account" : dataSourceAccount (),
45
- "codefresh_context" : dataSourceContext (),
46
- "codefresh_current_account" : dataSourceCurrentAccount (),
47
- "codefresh_idps" : dataSourceIdps (),
48
- "codefresh_step_types" : dataSourceStepTypes (),
49
- "codefresh_team" : dataSourceTeam (),
50
- "codefresh_user" : dataSourceUser (),
51
- "codefresh_users" : dataSourceUsers (),
52
- "codefresh_registry" : dataSourceRegistry (),
53
- "codefresh_pipelines" : dataSourcePipelines (),
54
- "codefresh_account_idp" : dataSourceAccountIdp (),
55
- "codefresh_project" : dataSourceProject (),
44
+ "codefresh_account" : dataSourceAccount (),
45
+ "codefresh_context" : dataSourceContext (),
46
+ "codefresh_current_account" : dataSourceCurrentAccount (),
47
+ "codefresh_idps" : dataSourceIdps (),
48
+ "codefresh_step_types" : dataSourceStepTypes (),
49
+ "codefresh_team" : dataSourceTeam (),
50
+ "codefresh_user" : dataSourceUser (),
51
+ "codefresh_users" : dataSourceUsers (),
52
+ "codefresh_registry" : dataSourceRegistry (),
53
+ "codefresh_pipelines" : dataSourcePipelines (),
54
+ "codefresh_account_idp" : dataSourceAccountIdp (),
55
+ "codefresh_project" : dataSourceProject (),
56
+ "codefresh_account_gitops_settings" : dataSourceAccountGitopsSettings (),
56
57
},
57
58
ResourcesMap : map [string ]* schema.Resource {
58
59
"codefresh_account" : resourceAccount (),
@@ -72,6 +73,7 @@ func Provider() *schema.Provider {
72
73
"codefresh_abac_rules" : resourceGitopsAbacRule (),
73
74
"codefresh_idp" : resourceIdp (),
74
75
"codefresh_account_idp" : resourceAccountIdp (),
76
+ "codefresh_account_gitops_settings" : resourceAccountGitopsSettings (),
75
77
},
76
78
ConfigureFunc : configureProvider ,
77
79
}
0 commit comments