Hello, In `aws.rds.ClusterInstance`, what is the d...
# general
f
Hello, In
aws.rds.ClusterInstance
, what is the difference between
resource_name
and
identifier
, please? Thanks for any assistance.
l
Where do you see
resource_name
documened? I see only
identifier
Ah, it's the python 1st arg. resource_name is the (prefix of the) name of the ClusterInstance resource. identifier is the id of the RDS instance.
identifier is an args property: it goes to AWS. resource_name is not, it's the Pulumi name and stays only in state.
f
Thank you.
g
@faint-father-49077 Please be careful with the resource_name, changing it could force the RDS instance creation as well.
l
s/could/will/ (Fixed that for ya.)