Skip to content

Commit

Permalink
Update schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
magodo committed Jan 27, 2025
1 parent 5d6cd83 commit 1e3fea4
Show file tree
Hide file tree
Showing 4 changed files with 5,371 additions and 168 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ Currently to generate the state, the tool supports *full mode* (with `-full`) or
|Name|Version|
|-|-|
|hashicorp/aws|v5.64.0|
|hashicorp/azurerm|v4.5.0|
|hashicorp/azuread|v3.0.2|
|hashicorp/azurerm|v4.16.0|
|hashicorp/azuread|v3.1.0|
|hashicorp/google|v6.0.1|
|azure/azapi|v2.0.1|
|azure/azapi|v2.2.0|

## Usage

Expand Down
12 changes: 11 additions & 1 deletion providers/azapi/provider_gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -878,11 +878,21 @@ func init() {
"type": "string",
"computed": true
},
{
"name": "object_id",
"type": "string",
"computed": true
},
{
"name": "subscription_id",
"type": "string",
"computed": true
},
{
"name": "subscription_resource_id",
"type": "string",
"computed": true
},
{
"name": "tenant_id",
"type": "string",
Expand Down Expand Up @@ -1376,5 +1386,5 @@ func init() {
fmt.Fprintf(os.Stderr, "unmarshalling the provider schema (azapi): %s", err)
os.Exit(1)
}
ProviderSchemaInfo.Version = "2.0.1"
ProviderSchemaInfo.Version = "2.2.0"
}
31 changes: 29 additions & 2 deletions providers/azuread/provider_gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -1302,7 +1302,7 @@ func init() {
"max_items": 1,
"required": false,
"optional": true,
"computed": true,
"computed": false,
"force_new": false
},
{
Expand Down Expand Up @@ -2315,6 +2315,13 @@ func init() {
"required": true,
"force_new": false
},
{
"name": "insider_risk_levels",
"type": "string",
"optional": true,
"computed": true,
"force_new": false
},
{
"name": "service_principal_risk_levels",
"type": [
Expand Down Expand Up @@ -4029,6 +4036,13 @@ func init() {
"required": true,
"force_new": false
},
{
"name": "country_lookup_method",
"type": "string",
"optional": true,
"default": "clientIpAddress",
"force_new": false
},
{
"name": "include_unknown_countries_and_regions",
"type": "bool",
Expand Down Expand Up @@ -5071,6 +5085,12 @@ func init() {
"optional": true,
"force_new": false
},
{
"name": "employee_hire_date",
"type": "string",
"optional": true,
"force_new": false
},
{
"name": "employee_id",
"type": "string",
Expand Down Expand Up @@ -6588,6 +6608,7 @@ func init() {
"list",
"string"
],
"country_lookup_method": "string",
"include_unknown_countries_and_regions": "bool"
}
]
Expand Down Expand Up @@ -7079,6 +7100,12 @@ func init() {
"computed": true,
"force_new": false
},
{
"name": "employee_hire_date",
"type": "string",
"computed": true,
"force_new": false
},
{
"name": "employee_id",
"type": "string",
Expand Down Expand Up @@ -7471,5 +7498,5 @@ func init() {
fmt.Fprintf(os.Stderr, "unmarshalling the provider schema (azuread): %s", err)
os.Exit(1)
}
ProviderSchemaInfo.Version = "3.0.2"
ProviderSchemaInfo.Version = "3.1.0"
}
Loading

0 comments on commit 1e3fea4

Please sign in to comment.