@@ -41,18 +41,19 @@ func Provider() *schema.Provider {
4141 },
4242 },
4343 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 (),
5657 },
5758 ResourcesMap : map [string ]* schema.Resource {
5859 "codefresh_account" : resourceAccount (),
@@ -72,6 +73,7 @@ func Provider() *schema.Provider {
7273 "codefresh_abac_rules" : resourceGitopsAbacRule (),
7374 "codefresh_idp" : resourceIdp (),
7475 "codefresh_account_idp" : resourceAccountIdp (),
76+ "codefresh_account_gitops_settings" : resourceAccountGitopsSettings (),
7577 },
7678 ConfigureFunc : configureProvider ,
7779 }
0 commit comments