├── .github └── workflows │ ├── build.yml │ ├── docs.yml │ └── test.yml ├── .gitignore ├── .goreleaser.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cmd └── autodoc │ └── main.go ├── docs ├── data-sources │ ├── foreman_architecture.md │ ├── foreman_computeprofile.md │ ├── foreman_computeresource.md │ ├── foreman_defaulttemplate.md │ ├── foreman_domain.md │ ├── foreman_environment.md │ ├── foreman_global_parameter.md │ ├── foreman_hostgroup.md │ ├── foreman_httpproxy.md │ ├── foreman_image.md │ ├── foreman_jobtemplate.md │ ├── foreman_katello_content_credential.md │ ├── foreman_katello_content_view.md │ ├── foreman_katello_lifecycle_environment.md │ ├── foreman_katello_product.md │ ├── foreman_katello_repository.md │ ├── foreman_katello_sync_plan.md │ ├── foreman_media.md │ ├── foreman_model.md │ ├── foreman_operatingsystem.md │ ├── foreman_parameter.md │ ├── foreman_partitiontable.md │ ├── foreman_provisioningtemplate.md │ ├── foreman_puppetclass.md │ ├── foreman_setting.md │ ├── foreman_smartclassparameter.md │ ├── foreman_smartproxy.md │ ├── foreman_subnet.md │ ├── foreman_templateinput.md │ ├── foreman_templatekind.md │ ├── foreman_user.md │ └── foreman_usergroup.md ├── index.md └── resources │ ├── foreman_architecture.md │ ├── foreman_computeprofile.md │ ├── foreman_computeresource.md │ ├── foreman_defaulttemplate.md │ ├── foreman_discovery_rule.md │ ├── foreman_domain.md │ ├── foreman_environment.md │ ├── foreman_global_parameter.md │ ├── foreman_host.md │ ├── foreman_hostgroup.md │ ├── foreman_httpproxy.md │ ├── foreman_image.md │ ├── foreman_jobtemplate.md │ ├── foreman_katello_content_credential.md │ ├── foreman_katello_content_view.md │ ├── foreman_katello_lifecycle_environment.md │ ├── foreman_katello_product.md │ ├── foreman_katello_repository.md │ ├── foreman_katello_sync_plan.md │ ├── foreman_media.md │ ├── foreman_model.md │ ├── foreman_operatingsystem.md │ ├── foreman_override_value.md │ ├── foreman_parameter.md │ ├── foreman_partitiontable.md │ ├── foreman_provisioningtemplate.md │ ├── foreman_smartproxy.md │ ├── foreman_subnet.md │ ├── foreman_templateinput.md │ ├── foreman_user.md │ ├── foreman_usergroup.md │ ├── foreman_webhook.md │ └── foreman_webhooktemplate.md ├── examples ├── architecture │ └── main.tf ├── compute_profile │ ├── complex_vmware.tf │ └── main.tf ├── compute_resource │ └── main.tf ├── content_credential │ ├── RPM-GPG-KEY-centos7 │ └── main.tf ├── content_view │ └── main.tf ├── discovery_rule │ └── main.tf ├── host │ ├── main.tf │ └── vmware_imagebased_host.tf ├── hostgroup │ └── main.tf ├── httpproxy │ └── main.tf ├── job_template │ └── main.tf ├── lifecycle_environment │ └── main.tf ├── media │ └── main.tf ├── model │ └── main.tf ├── partitioning_table │ └── main.tf ├── product │ └── main.tf ├── provisioning_template │ └── main.tf ├── repository │ └── main.tf ├── setting │ └── main.tf ├── smart_proxy │ └── main.tf ├── subnet │ └── main.tf ├── sync_plan │ └── main.tf ├── verify_provider │ ├── main.tf │ └── tfoverriderc ├── webhook │ └── main.tf └── webhook_template │ └── main.tf ├── foreman ├── api │ ├── architecture.go │ ├── client.go │ ├── client_test.go │ ├── common_parameter.go │ ├── computeprofile.go │ ├── computeresource.go │ ├── core.go │ ├── core_test.go │ ├── defaulttemplate.go │ ├── discovery_rule.go │ ├── domain.go │ ├── environment.go │ ├── foreman_task.go │ ├── host.go │ ├── hostgroup.go │ ├── httpproxy.go │ ├── image.go │ ├── job_template.go │ ├── katello_content_credential.go │ ├── katello_content_view_filters.go │ ├── katello_content_views.go │ ├── katello_lifecycle_environments.go │ ├── media.go │ ├── model.go │ ├── operatingsystem.go │ ├── override_value.go │ ├── parameter.go │ ├── partitiontable.go │ ├── product.go │ ├── provisioningtemplate.go │ ├── puppetclass.go │ ├── repository.go │ ├── server.go │ ├── setting.go │ ├── smartclassparameter.go │ ├── smartproxy.go │ ├── subnet.go │ ├── sync_plan.go │ ├── template_inputs.go │ ├── templatekind.go │ ├── user.go │ ├── usergroup.go │ ├── webhook.go │ └── webhooktemplate.go ├── config.go ├── data_source_foreman_architecture.go ├── data_source_foreman_architecture_test.go ├── data_source_foreman_common_parameter.go ├── data_source_foreman_computeprofile.go ├── data_source_foreman_computeresource.go ├── data_source_foreman_computeresource_test.go ├── data_source_foreman_defaulttemplate.go ├── data_source_foreman_domain.go ├── data_source_foreman_domain_test.go ├── data_source_foreman_environment.go ├── data_source_foreman_environment_test.go ├── data_source_foreman_hostgroup.go ├── data_source_foreman_hostgroup_test.go ├── data_source_foreman_httpproxy.go ├── data_source_foreman_image.go ├── data_source_foreman_image_test.go ├── data_source_foreman_jobtemplate.go ├── data_source_foreman_jobtemplate_test.go ├── data_source_foreman_katello_content_credential.go ├── data_source_foreman_katello_content_views.go ├── data_source_foreman_katello_lifecycle_environment.go ├── data_source_foreman_katello_product.go ├── data_source_foreman_katello_repositories.go ├── data_source_foreman_katello_sync_plan.go ├── data_source_foreman_media.go ├── data_source_foreman_media_test.go ├── data_source_foreman_model.go ├── data_source_foreman_model_test.go ├── data_source_foreman_operatingsystem.go ├── data_source_foreman_operatingsystem_test.go ├── data_source_foreman_parameter.go ├── data_source_foreman_partitiontable.go ├── data_source_foreman_partitiontable_test.go ├── data_source_foreman_provisioningtemplate.go ├── data_source_foreman_provisioningtemplate_test.go ├── data_source_foreman_puppetclass.go ├── data_source_foreman_puppetclass_test.go ├── data_source_foreman_setting.go ├── data_source_foreman_setting_test.go ├── data_source_foreman_smartclassparameter.go ├── data_source_foreman_smartclassparameter_test.go ├── data_source_foreman_smartproxy.go ├── data_source_foreman_smartproxy_test.go ├── data_source_foreman_subnet.go ├── data_source_foreman_subnet_test.go ├── data_source_foreman_templateinput.go ├── data_source_foreman_templatekind.go ├── data_source_foreman_templatekind_test.go ├── data_source_foreman_user.go ├── data_source_foreman_usergroup.go ├── data_source_foreman_usergroup_test.go ├── foreman_api_test.go ├── provider.go ├── resource_foreman_architecture.go ├── resource_foreman_architecture_test.go ├── resource_foreman_common_parameter.go ├── resource_foreman_computeprofile.go ├── resource_foreman_computeresource.go ├── resource_foreman_computeresource_test.go ├── resource_foreman_defaulttemplate.go ├── resource_foreman_discoveryrule.go ├── resource_foreman_discoveryrule_test.go ├── resource_foreman_domain.go ├── resource_foreman_domain_test.go ├── resource_foreman_environment.go ├── resource_foreman_environment_test.go ├── resource_foreman_host.go ├── resource_foreman_host_test.go ├── resource_foreman_hostgroup.go ├── resource_foreman_hostgroup_test.go ├── resource_foreman_httpproxy.go ├── resource_foreman_httpproxy_test.go ├── resource_foreman_image.go ├── resource_foreman_image_test.go ├── resource_foreman_jobtemplate.go ├── resource_foreman_jobtemplate_test.go ├── resource_foreman_katello_content_credential.go ├── resource_foreman_katello_content_views.go ├── resource_foreman_katello_lifecycle_environment.go ├── resource_foreman_katello_product.go ├── resource_foreman_katello_repositories.go ├── resource_foreman_katello_sync_plan.go ├── resource_foreman_media.go ├── resource_foreman_media_test.go ├── resource_foreman_model.go ├── resource_foreman_model_test.go ├── resource_foreman_operatingsystem.go ├── resource_foreman_operatingsystem_test.go ├── resource_foreman_override_value.go ├── resource_foreman_override_value_test.go ├── resource_foreman_parameter.go ├── resource_foreman_partitiontable.go ├── resource_foreman_partitiontable_test.go ├── resource_foreman_provisioningtemplate.go ├── resource_foreman_provisioningtemplate_test.go ├── resource_foreman_smartproxy.go ├── resource_foreman_smartproxy_test.go ├── resource_foreman_subnet.go ├── resource_foreman_subnet_test.go ├── resource_foreman_template_input.go ├── resource_foreman_user.go ├── resource_foreman_usergroup.go ├── resource_foreman_usergroup_test.go ├── resource_foreman_webhook.go ├── resource_foreman_webhook_test.go ├── resource_foreman_webhooktemplate.go ├── resource_foreman_webhooktemplate_test.go ├── resource_helper.go ├── testdata │ ├── 1.11 │ │ ├── architectures │ │ │ ├── create_response.json │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_single_state.json │ │ │ ├── read_response.json │ │ │ ├── state.json │ │ │ └── update_response.json │ │ ├── computeresources │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ └── read_response.json │ │ ├── domains │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_single_state.json │ │ │ └── read_response.json │ │ ├── environments │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_single_state.json │ │ │ └── read_response.json │ │ ├── hostgroups │ │ │ ├── create_response.json │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_single_state.json │ │ │ ├── read_response.json │ │ │ └── update_response.json │ │ ├── hosts │ │ │ ├── create_response.json │ │ │ ├── read_response.json │ │ │ └── update_response.json │ │ ├── media │ │ │ ├── create_response.json │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_single_state.json │ │ │ ├── read_response.json │ │ │ └── update_response.json │ │ ├── models │ │ │ ├── create_response.json │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_single_state.json │ │ │ ├── read_response.json │ │ │ └── update_response.json │ │ ├── operatingsystems │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_single_state.json │ │ │ └── read_response.json │ │ ├── provisioning_templates │ │ │ ├── create_response.json │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_single_state.json │ │ │ ├── read_response.json │ │ │ └── update_response.json │ │ ├── ptables │ │ │ ├── create_response.json │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_single_state.json │ │ │ ├── read_response.json │ │ │ └── update_response.json │ │ ├── query_response_zero.json │ │ ├── settings │ │ │ ├── query_response_single.json │ │ │ └── query_response_single_state.json │ │ ├── smart_proxies │ │ │ ├── create_response.json │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_single_state.json │ │ │ ├── read_response.json │ │ │ └── update_response.json │ │ ├── subnets │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_single_state.json │ │ │ └── read_response.json │ │ └── template_kinds │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ └── query_response_single_state.json │ ├── 1.20 │ │ └── provisioning_templates │ ├── 3.1.2 │ │ ├── image │ │ │ ├── create_response.json │ │ │ └── read_response.json │ │ ├── override_values │ │ │ ├── create_response.json │ │ │ ├── read_response.json │ │ │ └── update_response.json │ │ ├── puppet_classes │ │ │ ├── query_response_colon.json │ │ │ ├── query_response_colon_state.json │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_single_state.json │ │ │ └── read_response.json │ │ ├── query_response_zero.json │ │ └── smart_class_parameters │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ └── query_response_single_state.json │ ├── 3.11 │ │ ├── discovery_rules │ │ │ ├── create_response.json │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_zero.json │ │ │ ├── read_response.json │ │ │ └── update_response.json │ │ ├── webhook_templates │ │ │ ├── create_response.json │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_zero.json │ │ │ ├── read_response.json │ │ │ └── update_response.json │ │ └── webhooks │ │ │ ├── create_response.json │ │ │ ├── query_response_multi.json │ │ │ ├── query_response_single.json │ │ │ ├── query_response_zero.json │ │ │ ├── read_response.json │ │ │ └── update_response.json │ └── 3.6 │ │ └── job_template │ │ ├── create_response.json │ │ ├── query_response_multi.json │ │ ├── query_response_single.json │ │ ├── query_response_single_state.json │ │ ├── read_response.json │ │ └── update_response.json └── utils │ └── utils.go ├── go.mod ├── go.sum ├── main.go ├── mkdocs.yml └── templates ├── datasource.md.template ├── index.md.template ├── mkdocs.yml.template ├── partials ├── argument_reference.template ├── attributes_reference.template ├── description.template ├── disclaimer.template ├── example.template ├── meta.template └── title.template └── resource.md.template /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/README.md -------------------------------------------------------------------------------- /cmd/autodoc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/cmd/autodoc/main.go -------------------------------------------------------------------------------- /docs/data-sources/foreman_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_architecture.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_computeprofile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_computeprofile.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_computeresource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_computeresource.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_defaulttemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_defaulttemplate.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_domain.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_environment.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_global_parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_global_parameter.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_hostgroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_hostgroup.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_httpproxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_httpproxy.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_image.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_jobtemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_jobtemplate.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_katello_content_credential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_katello_content_credential.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_katello_content_view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_katello_content_view.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_katello_lifecycle_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_katello_lifecycle_environment.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_katello_product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_katello_product.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_katello_repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_katello_repository.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_katello_sync_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_katello_sync_plan.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_media.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_model.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_operatingsystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_operatingsystem.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_parameter.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_partitiontable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_partitiontable.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_provisioningtemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_provisioningtemplate.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_puppetclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_puppetclass.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_setting.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_smartclassparameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_smartclassparameter.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_smartproxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_smartproxy.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_subnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_subnet.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_templateinput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_templateinput.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_templatekind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_templatekind.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_user.md -------------------------------------------------------------------------------- /docs/data-sources/foreman_usergroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/data-sources/foreman_usergroup.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/resources/foreman_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_architecture.md -------------------------------------------------------------------------------- /docs/resources/foreman_computeprofile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_computeprofile.md -------------------------------------------------------------------------------- /docs/resources/foreman_computeresource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_computeresource.md -------------------------------------------------------------------------------- /docs/resources/foreman_defaulttemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_defaulttemplate.md -------------------------------------------------------------------------------- /docs/resources/foreman_discovery_rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_discovery_rule.md -------------------------------------------------------------------------------- /docs/resources/foreman_domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_domain.md -------------------------------------------------------------------------------- /docs/resources/foreman_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_environment.md -------------------------------------------------------------------------------- /docs/resources/foreman_global_parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_global_parameter.md -------------------------------------------------------------------------------- /docs/resources/foreman_host.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_host.md -------------------------------------------------------------------------------- /docs/resources/foreman_hostgroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_hostgroup.md -------------------------------------------------------------------------------- /docs/resources/foreman_httpproxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_httpproxy.md -------------------------------------------------------------------------------- /docs/resources/foreman_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_image.md -------------------------------------------------------------------------------- /docs/resources/foreman_jobtemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_jobtemplate.md -------------------------------------------------------------------------------- /docs/resources/foreman_katello_content_credential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_katello_content_credential.md -------------------------------------------------------------------------------- /docs/resources/foreman_katello_content_view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_katello_content_view.md -------------------------------------------------------------------------------- /docs/resources/foreman_katello_lifecycle_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_katello_lifecycle_environment.md -------------------------------------------------------------------------------- /docs/resources/foreman_katello_product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_katello_product.md -------------------------------------------------------------------------------- /docs/resources/foreman_katello_repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_katello_repository.md -------------------------------------------------------------------------------- /docs/resources/foreman_katello_sync_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_katello_sync_plan.md -------------------------------------------------------------------------------- /docs/resources/foreman_media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_media.md -------------------------------------------------------------------------------- /docs/resources/foreman_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_model.md -------------------------------------------------------------------------------- /docs/resources/foreman_operatingsystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_operatingsystem.md -------------------------------------------------------------------------------- /docs/resources/foreman_override_value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_override_value.md -------------------------------------------------------------------------------- /docs/resources/foreman_parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_parameter.md -------------------------------------------------------------------------------- /docs/resources/foreman_partitiontable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_partitiontable.md -------------------------------------------------------------------------------- /docs/resources/foreman_provisioningtemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_provisioningtemplate.md -------------------------------------------------------------------------------- /docs/resources/foreman_smartproxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_smartproxy.md -------------------------------------------------------------------------------- /docs/resources/foreman_subnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_subnet.md -------------------------------------------------------------------------------- /docs/resources/foreman_templateinput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_templateinput.md -------------------------------------------------------------------------------- /docs/resources/foreman_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_user.md -------------------------------------------------------------------------------- /docs/resources/foreman_usergroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_usergroup.md -------------------------------------------------------------------------------- /docs/resources/foreman_webhook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_webhook.md -------------------------------------------------------------------------------- /docs/resources/foreman_webhooktemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/docs/resources/foreman_webhooktemplate.md -------------------------------------------------------------------------------- /examples/architecture/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/architecture/main.tf -------------------------------------------------------------------------------- /examples/compute_profile/complex_vmware.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/compute_profile/complex_vmware.tf -------------------------------------------------------------------------------- /examples/compute_profile/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/compute_profile/main.tf -------------------------------------------------------------------------------- /examples/compute_resource/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/compute_resource/main.tf -------------------------------------------------------------------------------- /examples/content_credential/RPM-GPG-KEY-centos7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/content_credential/RPM-GPG-KEY-centos7 -------------------------------------------------------------------------------- /examples/content_credential/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/content_credential/main.tf -------------------------------------------------------------------------------- /examples/content_view/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/content_view/main.tf -------------------------------------------------------------------------------- /examples/discovery_rule/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/discovery_rule/main.tf -------------------------------------------------------------------------------- /examples/host/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/host/main.tf -------------------------------------------------------------------------------- /examples/host/vmware_imagebased_host.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/host/vmware_imagebased_host.tf -------------------------------------------------------------------------------- /examples/hostgroup/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/hostgroup/main.tf -------------------------------------------------------------------------------- /examples/httpproxy/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/httpproxy/main.tf -------------------------------------------------------------------------------- /examples/job_template/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/job_template/main.tf -------------------------------------------------------------------------------- /examples/lifecycle_environment/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/lifecycle_environment/main.tf -------------------------------------------------------------------------------- /examples/media/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/media/main.tf -------------------------------------------------------------------------------- /examples/model/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/model/main.tf -------------------------------------------------------------------------------- /examples/partitioning_table/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/partitioning_table/main.tf -------------------------------------------------------------------------------- /examples/product/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/product/main.tf -------------------------------------------------------------------------------- /examples/provisioning_template/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/provisioning_template/main.tf -------------------------------------------------------------------------------- /examples/repository/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/repository/main.tf -------------------------------------------------------------------------------- /examples/setting/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/setting/main.tf -------------------------------------------------------------------------------- /examples/smart_proxy/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/smart_proxy/main.tf -------------------------------------------------------------------------------- /examples/subnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/subnet/main.tf -------------------------------------------------------------------------------- /examples/sync_plan/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/sync_plan/main.tf -------------------------------------------------------------------------------- /examples/verify_provider/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/verify_provider/main.tf -------------------------------------------------------------------------------- /examples/verify_provider/tfoverriderc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/verify_provider/tfoverriderc -------------------------------------------------------------------------------- /examples/webhook/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/webhook/main.tf -------------------------------------------------------------------------------- /examples/webhook_template/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/examples/webhook_template/main.tf -------------------------------------------------------------------------------- /foreman/api/architecture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/architecture.go -------------------------------------------------------------------------------- /foreman/api/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/client.go -------------------------------------------------------------------------------- /foreman/api/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/client_test.go -------------------------------------------------------------------------------- /foreman/api/common_parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/common_parameter.go -------------------------------------------------------------------------------- /foreman/api/computeprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/computeprofile.go -------------------------------------------------------------------------------- /foreman/api/computeresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/computeresource.go -------------------------------------------------------------------------------- /foreman/api/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/core.go -------------------------------------------------------------------------------- /foreman/api/core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/core_test.go -------------------------------------------------------------------------------- /foreman/api/defaulttemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/defaulttemplate.go -------------------------------------------------------------------------------- /foreman/api/discovery_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/discovery_rule.go -------------------------------------------------------------------------------- /foreman/api/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/domain.go -------------------------------------------------------------------------------- /foreman/api/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/environment.go -------------------------------------------------------------------------------- /foreman/api/foreman_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/foreman_task.go -------------------------------------------------------------------------------- /foreman/api/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/host.go -------------------------------------------------------------------------------- /foreman/api/hostgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/hostgroup.go -------------------------------------------------------------------------------- /foreman/api/httpproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/httpproxy.go -------------------------------------------------------------------------------- /foreman/api/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/image.go -------------------------------------------------------------------------------- /foreman/api/job_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/job_template.go -------------------------------------------------------------------------------- /foreman/api/katello_content_credential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/katello_content_credential.go -------------------------------------------------------------------------------- /foreman/api/katello_content_view_filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/katello_content_view_filters.go -------------------------------------------------------------------------------- /foreman/api/katello_content_views.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/katello_content_views.go -------------------------------------------------------------------------------- /foreman/api/katello_lifecycle_environments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/katello_lifecycle_environments.go -------------------------------------------------------------------------------- /foreman/api/media.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/media.go -------------------------------------------------------------------------------- /foreman/api/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/model.go -------------------------------------------------------------------------------- /foreman/api/operatingsystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/operatingsystem.go -------------------------------------------------------------------------------- /foreman/api/override_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/override_value.go -------------------------------------------------------------------------------- /foreman/api/parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/parameter.go -------------------------------------------------------------------------------- /foreman/api/partitiontable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/partitiontable.go -------------------------------------------------------------------------------- /foreman/api/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/product.go -------------------------------------------------------------------------------- /foreman/api/provisioningtemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/provisioningtemplate.go -------------------------------------------------------------------------------- /foreman/api/puppetclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/puppetclass.go -------------------------------------------------------------------------------- /foreman/api/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/repository.go -------------------------------------------------------------------------------- /foreman/api/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/server.go -------------------------------------------------------------------------------- /foreman/api/setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/setting.go -------------------------------------------------------------------------------- /foreman/api/smartclassparameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/smartclassparameter.go -------------------------------------------------------------------------------- /foreman/api/smartproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/smartproxy.go -------------------------------------------------------------------------------- /foreman/api/subnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/subnet.go -------------------------------------------------------------------------------- /foreman/api/sync_plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/sync_plan.go -------------------------------------------------------------------------------- /foreman/api/template_inputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/template_inputs.go -------------------------------------------------------------------------------- /foreman/api/templatekind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/templatekind.go -------------------------------------------------------------------------------- /foreman/api/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/user.go -------------------------------------------------------------------------------- /foreman/api/usergroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/usergroup.go -------------------------------------------------------------------------------- /foreman/api/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/webhook.go -------------------------------------------------------------------------------- /foreman/api/webhooktemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/api/webhooktemplate.go -------------------------------------------------------------------------------- /foreman/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/config.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_architecture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_architecture.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_architecture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_architecture_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_common_parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_common_parameter.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_computeprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_computeprofile.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_computeresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_computeresource.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_computeresource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_computeresource_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_defaulttemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_defaulttemplate.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_domain.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_domain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_domain_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_environment.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_environment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_environment_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_hostgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_hostgroup.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_hostgroup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_hostgroup_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_httpproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_httpproxy.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_image.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_image_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_jobtemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_jobtemplate.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_jobtemplate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_jobtemplate_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_katello_content_credential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_katello_content_credential.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_katello_content_views.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_katello_content_views.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_katello_lifecycle_environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_katello_lifecycle_environment.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_katello_product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_katello_product.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_katello_repositories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_katello_repositories.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_katello_sync_plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_katello_sync_plan.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_media.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_media.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_media_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_media_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_model.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_model_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_operatingsystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_operatingsystem.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_operatingsystem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_operatingsystem_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_parameter.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_partitiontable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_partitiontable.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_partitiontable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_partitiontable_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_provisioningtemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_provisioningtemplate.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_provisioningtemplate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_provisioningtemplate_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_puppetclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_puppetclass.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_puppetclass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_puppetclass_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_setting.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_setting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_setting_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_smartclassparameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_smartclassparameter.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_smartclassparameter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_smartclassparameter_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_smartproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_smartproxy.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_smartproxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_smartproxy_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_subnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_subnet.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_subnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_subnet_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_templateinput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_templateinput.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_templatekind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_templatekind.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_templatekind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_templatekind_test.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_user.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_usergroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_usergroup.go -------------------------------------------------------------------------------- /foreman/data_source_foreman_usergroup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/data_source_foreman_usergroup_test.go -------------------------------------------------------------------------------- /foreman/foreman_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/foreman_api_test.go -------------------------------------------------------------------------------- /foreman/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/provider.go -------------------------------------------------------------------------------- /foreman/resource_foreman_architecture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_architecture.go -------------------------------------------------------------------------------- /foreman/resource_foreman_architecture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_architecture_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_common_parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_common_parameter.go -------------------------------------------------------------------------------- /foreman/resource_foreman_computeprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_computeprofile.go -------------------------------------------------------------------------------- /foreman/resource_foreman_computeresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_computeresource.go -------------------------------------------------------------------------------- /foreman/resource_foreman_computeresource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_computeresource_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_defaulttemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_defaulttemplate.go -------------------------------------------------------------------------------- /foreman/resource_foreman_discoveryrule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_discoveryrule.go -------------------------------------------------------------------------------- /foreman/resource_foreman_discoveryrule_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_discoveryrule_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_domain.go -------------------------------------------------------------------------------- /foreman/resource_foreman_domain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_domain_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_environment.go -------------------------------------------------------------------------------- /foreman/resource_foreman_environment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_environment_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_host.go -------------------------------------------------------------------------------- /foreman/resource_foreman_host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_host_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_hostgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_hostgroup.go -------------------------------------------------------------------------------- /foreman/resource_foreman_hostgroup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_hostgroup_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_httpproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_httpproxy.go -------------------------------------------------------------------------------- /foreman/resource_foreman_httpproxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_httpproxy_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_image.go -------------------------------------------------------------------------------- /foreman/resource_foreman_image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_image_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_jobtemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_jobtemplate.go -------------------------------------------------------------------------------- /foreman/resource_foreman_jobtemplate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_jobtemplate_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_katello_content_credential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_katello_content_credential.go -------------------------------------------------------------------------------- /foreman/resource_foreman_katello_content_views.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_katello_content_views.go -------------------------------------------------------------------------------- /foreman/resource_foreman_katello_lifecycle_environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_katello_lifecycle_environment.go -------------------------------------------------------------------------------- /foreman/resource_foreman_katello_product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_katello_product.go -------------------------------------------------------------------------------- /foreman/resource_foreman_katello_repositories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_katello_repositories.go -------------------------------------------------------------------------------- /foreman/resource_foreman_katello_sync_plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_katello_sync_plan.go -------------------------------------------------------------------------------- /foreman/resource_foreman_media.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_media.go -------------------------------------------------------------------------------- /foreman/resource_foreman_media_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_media_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_model.go -------------------------------------------------------------------------------- /foreman/resource_foreman_model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_model_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_operatingsystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_operatingsystem.go -------------------------------------------------------------------------------- /foreman/resource_foreman_operatingsystem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_operatingsystem_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_override_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_override_value.go -------------------------------------------------------------------------------- /foreman/resource_foreman_override_value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_override_value_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_parameter.go -------------------------------------------------------------------------------- /foreman/resource_foreman_partitiontable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_partitiontable.go -------------------------------------------------------------------------------- /foreman/resource_foreman_partitiontable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_partitiontable_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_provisioningtemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_provisioningtemplate.go -------------------------------------------------------------------------------- /foreman/resource_foreman_provisioningtemplate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_provisioningtemplate_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_smartproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_smartproxy.go -------------------------------------------------------------------------------- /foreman/resource_foreman_smartproxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_smartproxy_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_subnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_subnet.go -------------------------------------------------------------------------------- /foreman/resource_foreman_subnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_subnet_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_template_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_template_input.go -------------------------------------------------------------------------------- /foreman/resource_foreman_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_user.go -------------------------------------------------------------------------------- /foreman/resource_foreman_usergroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_usergroup.go -------------------------------------------------------------------------------- /foreman/resource_foreman_usergroup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_usergroup_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_webhook.go -------------------------------------------------------------------------------- /foreman/resource_foreman_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_webhook_test.go -------------------------------------------------------------------------------- /foreman/resource_foreman_webhooktemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_webhooktemplate.go -------------------------------------------------------------------------------- /foreman/resource_foreman_webhooktemplate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_foreman_webhooktemplate_test.go -------------------------------------------------------------------------------- /foreman/resource_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/resource_helper.go -------------------------------------------------------------------------------- /foreman/testdata/1.11/architectures/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/architectures/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/architectures/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/architectures/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/architectures/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/architectures/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/architectures/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/architectures/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/architectures/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/architectures/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/architectures/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/architectures/state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/architectures/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/architectures/update_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/computeresources/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/computeresources/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/computeresources/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/computeresources/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/computeresources/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/computeresources/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/domains/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/domains/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/domains/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/domains/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/domains/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/domains/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/domains/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/domains/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/environments/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/environments/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/environments/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/environments/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/environments/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/environments/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/environments/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/environments/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/hostgroups/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/hostgroups/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/hostgroups/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/hostgroups/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/hostgroups/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/hostgroups/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/hostgroups/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/hostgroups/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/hostgroups/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/hostgroups/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/hostgroups/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/hostgroups/update_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/hosts/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/hosts/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/hosts/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/hosts/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/hosts/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/hosts/update_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/media/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/media/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/media/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/media/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/media/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/media/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/media/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/media/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/media/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/media/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/media/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/media/update_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/models/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/models/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/models/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/models/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/models/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/models/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/models/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/models/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/models/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/models/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/models/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/models/update_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/operatingsystems/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/operatingsystems/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/operatingsystems/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/operatingsystems/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/operatingsystems/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/operatingsystems/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/operatingsystems/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/operatingsystems/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/provisioning_templates/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/provisioning_templates/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/provisioning_templates/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/provisioning_templates/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/provisioning_templates/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/provisioning_templates/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/provisioning_templates/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/provisioning_templates/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/provisioning_templates/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/provisioning_templates/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/provisioning_templates/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/provisioning_templates/update_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/ptables/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/ptables/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/ptables/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/ptables/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/ptables/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/ptables/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/ptables/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/ptables/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/ptables/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/ptables/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/ptables/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/ptables/update_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/query_response_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/query_response_zero.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/settings/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/settings/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/settings/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/settings/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/smart_proxies/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/smart_proxies/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/smart_proxies/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/smart_proxies/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/smart_proxies/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/smart_proxies/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/smart_proxies/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/smart_proxies/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/smart_proxies/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/smart_proxies/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/smart_proxies/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/smart_proxies/update_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/subnets/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/subnets/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/subnets/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/subnets/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/subnets/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/subnets/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/subnets/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/subnets/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/template_kinds/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/template_kinds/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/template_kinds/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/template_kinds/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/1.11/template_kinds/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/1.11/template_kinds/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/1.20/provisioning_templates: -------------------------------------------------------------------------------- 1 | ../1.11/provisioning_templates -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/image/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/image/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/image/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/image/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/override_values/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/override_values/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/override_values/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/override_values/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/override_values/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/override_values/update_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/puppet_classes/query_response_colon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/puppet_classes/query_response_colon.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/puppet_classes/query_response_colon_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/puppet_classes/query_response_colon_state.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/puppet_classes/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/puppet_classes/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/puppet_classes/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/puppet_classes/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/puppet_classes/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/puppet_classes/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/puppet_classes/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/puppet_classes/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/query_response_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/query_response_zero.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/smart_class_parameters/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/smart_class_parameters/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/smart_class_parameters/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/smart_class_parameters/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/3.1.2/smart_class_parameters/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.1.2/smart_class_parameters/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/discovery_rules/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/discovery_rules/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/discovery_rules/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/discovery_rules/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/discovery_rules/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/discovery_rules/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/discovery_rules/query_response_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/discovery_rules/query_response_zero.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/discovery_rules/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/discovery_rules/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/discovery_rules/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/discovery_rules/update_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/webhook_templates/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/webhook_templates/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/webhook_templates/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/webhook_templates/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/webhook_templates/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/webhook_templates/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/webhook_templates/query_response_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/webhook_templates/query_response_zero.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/webhook_templates/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/webhook_templates/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/webhook_templates/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/webhook_templates/update_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/webhooks/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/webhooks/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/webhooks/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/webhooks/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/webhooks/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/webhooks/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/webhooks/query_response_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/webhooks/query_response_zero.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/webhooks/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/webhooks/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.11/webhooks/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.11/webhooks/update_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.6/job_template/create_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.6/job_template/create_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.6/job_template/query_response_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.6/job_template/query_response_multi.json -------------------------------------------------------------------------------- /foreman/testdata/3.6/job_template/query_response_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.6/job_template/query_response_single.json -------------------------------------------------------------------------------- /foreman/testdata/3.6/job_template/query_response_single_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.6/job_template/query_response_single_state.json -------------------------------------------------------------------------------- /foreman/testdata/3.6/job_template/read_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.6/job_template/read_response.json -------------------------------------------------------------------------------- /foreman/testdata/3.6/job_template/update_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/testdata/3.6/job_template/update_response.json -------------------------------------------------------------------------------- /foreman/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/foreman/utils/utils.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/main.go -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /templates/datasource.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/templates/datasource.md.template -------------------------------------------------------------------------------- /templates/index.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/templates/index.md.template -------------------------------------------------------------------------------- /templates/mkdocs.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/templates/mkdocs.yml.template -------------------------------------------------------------------------------- /templates/partials/argument_reference.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/templates/partials/argument_reference.template -------------------------------------------------------------------------------- /templates/partials/attributes_reference.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/templates/partials/attributes_reference.template -------------------------------------------------------------------------------- /templates/partials/description.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/templates/partials/description.template -------------------------------------------------------------------------------- /templates/partials/disclaimer.template: -------------------------------------------------------------------------------- 1 | {{define "disclaimer"}}This doc was autogenerated.{{end}} 2 | -------------------------------------------------------------------------------- /templates/partials/example.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/templates/partials/example.template -------------------------------------------------------------------------------- /templates/partials/meta.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/templates/partials/meta.template -------------------------------------------------------------------------------- /templates/partials/title.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/templates/partials/title.template -------------------------------------------------------------------------------- /templates/resource.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-coop/terraform-provider-foreman/HEAD/templates/resource.md.template --------------------------------------------------------------------------------