Skip to content

Commit 3ff7ccc

Browse files
modular-magiciandanawillow
authored andcommitted
Add Policy, Attestor, and Note resources for Binary Authorization (#1885)
<!-- This change is generated by MagicModules. --> /cc @danawillow
1 parent fb66cd8 commit 3ff7ccc

35 files changed

+2300
-26
lines changed

google/provider.go

+2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ func Provider() terraform.ResourceProvider {
9999
},
100100

101101
ResourcesMap: mergeResourceMaps(
102+
GeneratedBinaryAuthorizationResourcesMap,
102103
GeneratedComputeResourcesMap,
104+
GeneratedContainerAnalysisResourcesMap,
103105
GeneratedRedisResourcesMap,
104106
GeneratedResourceManagerResourcesMap,
105107
map[string]*schema.Resource{
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// ----------------------------------------------------------------------------
2+
//
3+
// *** AUTO GENERATED CODE *** AUTO GENERATED CODE ***
4+
//
5+
// ----------------------------------------------------------------------------
6+
//
7+
// This file is automatically generated by Magic Modules and manual
8+
// changes will be clobbered when the file is regenerated.
9+
//
10+
// Please read more about how to change this file in
11+
// .github/CONTRIBUTING.md.
12+
//
13+
// ----------------------------------------------------------------------------
14+
15+
package google
16+
17+
import "github.com/hashicorp/terraform/helper/schema"
18+
19+
var GeneratedBinaryAuthorizationResourcesMap = map[string]*schema.Resource{
20+
"google_binary_authorization_attestor": resourceBinaryAuthorizationAttestor(),
21+
"google_binary_authorization_policy": resourceBinaryAuthorizationPolicy(),
22+
}
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// ----------------------------------------------------------------------------
2+
//
3+
// *** AUTO GENERATED CODE *** AUTO GENERATED CODE ***
4+
//
5+
// ----------------------------------------------------------------------------
6+
//
7+
// This file is automatically generated by Magic Modules and manual
8+
// changes will be clobbered when the file is regenerated.
9+
//
10+
// Please read more about how to change this file in
11+
// .github/CONTRIBUTING.md.
12+
//
13+
// ----------------------------------------------------------------------------
14+
15+
package google
16+
17+
import "github.com/hashicorp/terraform/helper/schema"
18+
19+
var GeneratedContainerAnalysisResourcesMap = map[string]*schema.Resource{
20+
"google_container_analysis_note": resourceContainerAnalysisNote(),
21+
}

0 commit comments

Comments
 (0)