-
Notifications
You must be signed in to change notification settings - Fork 724
Description
Community Note
Please vote on this issue by adding a π reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Terraform Version and Provider Version
Terraform v1.11.4
on linux_amd64
provider registry.terraform.io/oracle/oci v7.6.0
Affected Resource(s)
oci_fusion_apps_fusion_environment_refresh_activity
Terraform Configuration Files
resource "oci_fusion_apps_fusion_environment_refresh_activity" "yelp_fusion_environment_refresh_activity" {
for_each = {for activity in var.refresh_activities: activity.name => activity}
#Required
fusion_environment_id = oci_fusion_apps_fusion_environment.yelp_fusion_environment.id
source_fusion_environment_id = each.value.source_environment_ocid
#Optional
is_data_masking_opted = each.value.is_data_masking_opted
time_scheduled_start = "2026-01-01 00:00:00.000 +0000 UTC"
}
Debug Output
Github Gist: https://gist.github.com/vulpine/4989c5077970ef0bc7a408f07b7722a0
Expected Behavior
The time_scheduled_start parameter should be accepted.
Actual Behavior
An "Unsupported argument" error:
β Error: Unsupported argument
β
β on main.tf line 30, in resource "oci_fusion_apps_fusion_environment_refresh_activity" "yelp_fusion_environment_refresh_activity":
β 30: time_scheduled_start = "2026-01-01 00:00:00.000 +0000 UTC"
β
β An argument named "time_scheduled_start" is not expected here.
Steps to Reproduce
Write a oci_fusion_apps_fusion_environment_refresh_activity which includes the time_scheduled_start argument.
terraform plan
Important Factoids
We're using v7.6.0 in this example, but looking at the source for the resource (https://github.com/oracle/terraform-provider-oci/blob/master/internal/service/fusion_apps/fusion_apps_fusion_environment_refresh_activity_resource.go#L56), this is still absent from the current stable release.
References
https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/fusion_apps_fusion_environment_refresh_activity#argument-reference shows this argument as available.