Click to expand
```terraform
Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# module.powerplatform.powerplatform_environment.foo will be created
+ resource "powerplatform_environment" "foo" {
+ currency_code = "USD"
+ display_name = "foo"
+ domain = "myspecialdomain"
+ environment_name = (known after apply)
+ environment_type = "Sandbox"
+ id = (known after apply)
+ language_code = 1033
+ linked_app_id = (known after apply)
+ linked_app_type = (known after apply)
+ linked_app_url = (known after apply)
+ location = "unitedstates"
+ organization_id = (known after apply)
+ security_group_id = "00000000-0000-0000-0000-000000000000"
+ url = (known after apply)
+ version = (known after apply)
}
Plan: 1 to add, 0 to change, 0 to destroy.
```
Terraform Plan Output
Click to expand
```terraform Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols: + create Terraform will perform the following actions: # module.powerplatform.powerplatform_environment.foo will be created + resource "powerplatform_environment" "foo" { + currency_code = "USD" + display_name = "foo" + domain = "myspecialdomain" + environment_name = (known after apply) + environment_type = "Sandbox" + id = (known after apply) + language_code = 1033 + linked_app_id = (known after apply) + linked_app_type = (known after apply) + linked_app_url = (known after apply) + location = "unitedstates" + organization_id = (known after apply) + security_group_id = "00000000-0000-0000-0000-000000000000" + url = (known after apply) + version = (known after apply) } Plan: 1 to add, 0 to change, 0 to destroy. ```