Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Add trust to ad domain 5731 #7056

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/3798.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
AD Domain - added new resource `google_active_directory_domain_trust`
```
5 changes: 3 additions & 2 deletions google/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -615,9 +615,9 @@ func Provider() terraform.ResourceProvider {
return provider
}

// Generated resources: 154
// Generated resources: 155
// Generated IAM resources: 60
// Total generated resources: 214
// Total generated resources: 215
func ResourceMap() map[string]*schema.Resource {
resourceMap, _ := ResourceMapWithErrors()
return resourceMap
Expand All @@ -636,6 +636,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
"google_access_context_manager_service_perimeters": resourceAccessContextManagerServicePerimeters(),
"google_access_context_manager_service_perimeter_resource": resourceAccessContextManagerServicePerimeterResource(),
"google_active_directory_domain": resourceActiveDirectoryDomain(),
"google_active_directory_domain_trust": resourceActiveDirectoryDomainTrust(),
"google_app_engine_domain_mapping": resourceAppEngineDomainMapping(),
"google_app_engine_firewall_rule": resourceAppEngineFirewallRule(),
"google_app_engine_standard_app_version": resourceAppEngineStandardAppVersion(),
Expand Down
2 changes: 1 addition & 1 deletion google/resource_active_directory_domain_generated_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func TestAccActiveDirectoryDomain_activeDirectoryDomainBasicExample(t *testing.T
func testAccActiveDirectoryDomain_activeDirectoryDomainBasicExample(context map[string]interface{}) string {
return Nprintf(`
resource "google_active_directory_domain" "ad-domain" {
domain_name = "mydomain%{random_suffix}.org.com"
domain_name = ".org.com"
locations = ["us-central1"]
reserved_ip_range = "192.168.255.0/24"
}
Expand Down
Loading